Version 9.11.0

This commit is contained in:
Manuel Rüger 2023-12-04 10:20:45 +01:00
parent d64bece68d
commit 10dc8c0a62
2 changed files with 8 additions and 2 deletions

View File

@ -741,7 +741,7 @@ USAGE:
mark [global options] [arguments...] mark [global options] [arguments...]
VERSION: VERSION:
9.10.1 9.11.0
DESCRIPTION: DESCRIPTION:
Mark is a tool to update Atlassian Confluence pages from markdown. Documentation is available here: https://github.com/kovetskiy/mark Mark is a tool to update Atlassian Confluence pages from markdown. Documentation is available here: https://github.com/kovetskiy/mark
@ -847,6 +847,12 @@ Rather than running `mark` multiple times, or looping through a list of files fr
mark -f "helpful_cmds/*.md" mark -f "helpful_cmds/*.md"
``` ```
You can also use `**` to get all files recursively.
```bash
mark -f "**/docs/*.md"
```
## Issues, Bugs & Contributions ## Issues, Bugs & Contributions
I've started the project to solve my own problem and open sourced the solution so anyone who has a problem like me can solve it too. I've started the project to solve my own problem and open sourced the solution so anyone who has a problem like me can solve it too.

View File

@ -24,7 +24,7 @@ import (
) )
const ( const (
version = "9.10.1" version = "9.11.0"
usage = "A tool for updating Atlassian Confluence pages from markdown." usage = "A tool for updating Atlassian Confluence pages from markdown."
description = `Mark is a tool to update Atlassian Confluence pages from markdown. Documentation is available here: https://github.com/kovetskiy/mark` description = `Mark is a tool to update Atlassian Confluence pages from markdown. Documentation is available here: https://github.com/kovetskiy/mark`
) )