From 10dc8c0a62272a6ab2dbe162b744f5a665612859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20R=C3=BCger?= Date: Mon, 4 Dec 2023 10:20:45 +0100 Subject: [PATCH] Version 9.11.0 --- README.md | 8 +++++++- main.go | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 63664b15..3c0e545f 100644 --- a/README.md +++ b/README.md @@ -741,7 +741,7 @@ USAGE: mark [global options] [arguments...] VERSION: - 9.10.1 + 9.11.0 DESCRIPTION: 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" ``` +You can also use `**` to get all files recursively. +```bash +mark -f "**/docs/*.md" +``` + + ## 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. diff --git a/main.go b/main.go index b78ff408..a7d0dc45 100644 --- a/main.go +++ b/main.go @@ -24,7 +24,7 @@ import ( ) const ( - version = "9.10.1" + version = "9.11.0" 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` )