Files
zmVault/markdown-formatter-cli.md
T

489 B

id, aliases, tags
id aliases tags
topic/automation
topic/software
destiny/fleeting
type/idea

Markdown Formatter CLI

create a custom markdown formatter to implement desired features.

Character Substitution

  • em dashes to --
  • curved quotes to straight

Semantic Line Breaks

Join inappropriately split clauses.

Always split on certain syntax:

  • full stop

Conditionally split in other cases to prevent column overflow

(?<=\.) (?=.{30,})
(?<=,) (?=.{30,})