-
Notifications
You must be signed in to change notification settings - Fork 17
Rewrite the guides to Markdown #450
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
linkify extra was added to the `myst-parser` dependency and `uv.lock` was updated accordingly.
Please note that the MyST syntax of several elements (e.g., admonitions, images, cross-references etc.) is different from the syntax used by MkDocs.
Dělím review po kousíčkách, kdybyste se k tomu dostal někdo jiný tak začněte odspodu a dejte vědět :) |
"dollarmath", | ||
"deflist", | ||
"linkify", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't use math.
Linkify makes some questionable choices; let's enable it separately if needed.
"dollarmath", | |
"deflist", | |
"linkify", | |
"deflist", |
@@ -5,7 +5,7 @@ requires-python = "==3.12.*" | |||
dependencies = [ | |||
"click==8.2.1", | |||
"jinja2==3.1.6", | |||
"myst-parser==4.0.1", | |||
"myst-parser[linkify]==4.0.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd leave out linkify for now.
Vypadá to skvěle, našel jsem pár drobností (sorry za switching jazyků, nepsal jsem to najednou :) |
Co-authored-by: Petr Viktorin <[email protected]>
In the spirit of #434, I rewrote all the pages under "guides" to markdown. If this gets accepted, I can continue to rewrite the rest of the docs.
However, if we end up using MkDocs, please note that MyST (the markdown parser for Sphinx) use a different syntax than MkDocs for several elements:
{slack}`<...>`
,{twitter}`<...>`
,{gh-repo}`<...>`
- those will need to be re-implemented as plugins, or just rewritten as plain links (might be an better option).There might be more differences, but these are the ones I run into. Additonal work will be needed to get it working properly under MkDocs.