Difference between revisions of "Markdown"

From Wiki at Neela Nurseries
Jump to navigation Jump to search
m (Add link to mdformat tool documentation)
m (Add notes on mdformat installation)
Line 9: Line 9:
  
 
* https://mdformat.readthedocs.io/en/stable/users/style.html
 
* https://mdformat.readthedocs.io/en/stable/users/style.html
 +
 +
2026-02-10 - Possible common localhost set up
 +
 +
A localhost can have multiple Python virtual environments.  If a common way of using mdformat is desired it may make sense to create a `venv` in the localhost user's home directory, and to then install mdformat as follows:
 +
 +
<pre>
 +
1022  python3 -m venv .venv
 +
1023  source ./.venv/bin/activate
 +
1025  pip install pipx
 +
1026  pipx install mdformat
 +
1027  pipx inject mdformat mdformat-gfm
 +
1028  history
 +
</pre>
 +
 +
 +
<!-- EOF -->

Revision as of 16:59, 10 February 2026

Markdown auto-formatting tools mdformat:

link to mdformat tool documentation:

2026-02-10 - Possible common localhost set up

A localhost can have multiple Python virtual environments. If a common way of using mdformat is desired it may make sense to create a `venv` in the localhost user's home directory, and to then install mdformat as follows:

 1022  python3 -m venv .venv
 1023  source ./.venv/bin/activate
 1025  pip install pipx
 1026  pipx install mdformat
 1027  pipx inject mdformat mdformat-gfm
 1028  history