From d0fa2bb89a472e3e0c9a05470dbacc59a008f6eb Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sun, 22 Aug 2021 17:44:35 -0400 Subject: [PATCH] Update default args (#21) --- README.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 84dc031..469e24d 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Want a cool `Table of Contents` for your markdown and also auto sync changes eac |:-------------:|:-----------:|:-------------:|:----------------------------:|:-------------:| | plugins | `string` OR `string[]` | `false` | `remark-toc` | List of [remarkjs plugins](https://github.com/remarkjs/remark/blob/main/doc/plugins.md) | | files | `string` OR `string[]` | `false` | `README.md` | List of input markdown files | -| args | `string` | `false` | `'--use toc --output'` | [remark cli](https://github.com/unifiedjs/unified-args#cli) options. | +| args | `string` | `false` | `'-r .remarkrc.json --use toc --output'` | [remark cli](https://github.com/unifiedjs/unified-args#cli) options. | ## Example diff --git a/action.yml b/action.yml index bf0c3c2..0156a51 100644 --- a/action.yml +++ b/action.yml @@ -15,7 +15,7 @@ inputs: args: description: 'Argument passed to remark cli' required: true - default: "--rc-path /.remarkrc.json --use toc --output" + default: "-r .remarkrc.json --use toc --output" runs: using: 'docker'