From 7bbd2117321d7e7afbd8107217ab8dcb972ee59f Mon Sep 17 00:00:00 2001 From: Nick Groenen Date: Sun, 3 Dec 2023 17:19:30 +0100 Subject: [PATCH] Remove leftover `--ignore-frontmatter-keyword` docs reference An earlier iteration of #163 included this flag, but the final version only uses `--skip-tags` and `--only-tags`. --- README.md | 3 +-- docs/usage-advanced.md | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35382a3..5524bc2 100644 --- a/README.md +++ b/README.md @@ -140,9 +140,8 @@ To completely remove any frontmatter from exported notes, use `--frontmatter=nev The following files are not exported by default: * hidden files (can be adjusted with `--hidden`) -* files mattching a pattern listed in `.export-ignore` (can be adjusted with `--ignore-file`) +* files matching a pattern listed in `.export-ignore` (can be adjusted with `--ignore-file`) * any files that are ignored by git (can be adjusted with `--no-git`) -* any files having `private: true` in their frontmatter (the keyword `private` can be changed with `--ignore-frontmatter-keyword`) * using `--skip-tags foo --skip-tags bar` will skip any files that have the tags `foo` or `bar` in their frontmatter * using `--only-tags foo --only-tags bar` will skip any files that **don't** have the tags `foo` or `bar` in their frontmatter diff --git a/docs/usage-advanced.md b/docs/usage-advanced.md index 9bd997a..59264b8 100644 --- a/docs/usage-advanced.md +++ b/docs/usage-advanced.md @@ -15,9 +15,8 @@ To completely remove any frontmatter from exported notes, use `--frontmatter=nev The following files are not exported by default: * hidden files (can be adjusted with `--hidden`) -* files mattching a pattern listed in `.export-ignore` (can be adjusted with `--ignore-file`) +* files matching a pattern listed in `.export-ignore` (can be adjusted with `--ignore-file`) * any files that are ignored by git (can be adjusted with `--no-git`) -* any files having `private: true` in their frontmatter (the keyword `private` can be changed with `--ignore-frontmatter-keyword`) * using `--skip-tags foo --skip-tags bar` will skip any files that have the tags `foo` or `bar` in their frontmatter * using `--only-tags foo --only-tags bar` will skip any files that **don't** have the tags `foo` or `bar` in their frontmatter