[go: nahoru, domu]

Skip to content

Lutherwaves/yankovs.com

Repository files navigation

This is a repository for Martin Yankov's personal website

Gitlab CI is used to ensure proper Spelling and Markdown Linting

Spellchecking

  1. Install & spellchecker-cli, as well as retext plugins used:
npm install -g markdownlint-cli spellchecker-cli retext-spell retext-indefinite-article retext-repeated-words retext-syntax-mentions retext-syntax-urls

2.Check spelling and generate a dictionary of words

spellchecker --files '**/*.md' -p spell indefinite-article repeated-words syntax-mentions syntax-urls --generate-dictionary
  • Check the generated dictionary.txt and ensure that these words are to be ignored
  1. Check spelling and ignore words in dictionary.txt
spellchecker --files '**/*.md' -p spell indefinite-article repeated-words syntax-mentions syntax-urls -d dictionary.txt

Linting

  1. Install markdownlint-cli:
npm install -g markdownlint-cli spellchecker-cli retext-spell retext-indefinite-article retext-repeated-words retext-syntax-mentions retext-syntax-urls
  1. Check and fix linting
  • Detect errors
markdownlint '**/*.md' --ignore node_modules
  • Fix errors (Note: line-length is not fixed automatically):
markdownlint --fix '**/*.md' --ignore node_modules
  • Additionally, spellchecker-cli can be used with the remark-frontmatter plugin to fix additional problems:
spellchecker --files '**/*.md' -p frontmatter -d dictionary.txt

About

My personal website

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published