-
Notifications
You must be signed in to change notification settings - Fork 20
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
Compatibility with GitHub and Pandoc #72
Comments
Hey, thanks for the suggestion/question. This crate currently uses For now, supporting GitHub-flavor syntax seems doable, as it's just a combination of existing markdown syntax. However, this will be a subset of current functionality (can't handle e.g. custom titles). It should also probably be opt-in with a new config option, we can remove this later if we think most users will want it. If you'd like to work on a PR for supporting GitHub flavour markdown, I'm happy to review it. I may eventually implement it myself if not, but currently spare-time-coding is quite far down my list of things to do! |
I'm running into a related issue here, where I'd like to nest code blocks inside an admonishment, but the most natural way to do so doesn't work correctly (as you can't nest multiple triple-tick ``` blocks within one-another). Having some alternative syntax for admonishments would be really useful. It seems that |
Hey, thanks for the feedback. Splitting up your points: I'd like to nest code blocks inside an admonishmentThe current way to achieve this is outlined here using existing markdown syntax, which allows 3 or more backtick/tilde characters to make a code block: Option 1 (tildes):
Option 2 (more backticks):
Having some alternative syntax for admonishments would be really useful.I'm not strictly opposed to new syntax for the blocks, but it does add code complexity/overhead as to how all the features are supported with each set of syntax. Basically I'd want to understand what you can't do conveniently with the existing syntax first.
That does look doable, if you have a proposal for a syntax using them, I would be interested to hear it. Something like the To be clear, this isn't something I will work on actively myself, but I'm happy to review/discuss with anyone who wants to work on it. |
Thanks for pointing out that alternate tile-based syntax! A bit embarassed that I missed that while reading through the mdbook-admonish guide 😅 I think that was the only major sticking point for me personally wrt. the need for alternate syntax. |
Hi,
I've just started using mdBook and have added mdBook-admonish. The look is great.
I am slightly concerned for the future when it comes to publishing my book in formats other than HTML. It looks like the mdBook renderers for PDF and EPUB are a long way from finished. So I was wondering about using PanDoc for more mature pdf and epub support.
However, I think I will need to get PanDoc to interpret my mdBook files as if they are GitHub flavoured Markdown as it doesn't support mdBook at present. GitHub seems to have standardised on
although that seems contentious. I see that CommonMark is also having discussions about what format to use and I see that this is also suggested as a "better" solution:
While Microsoft are apparently using
So the route of dBook-admonish of
is unusual. Do you have any thoughts about supporting GitHub format or whatever Commonmark eventually decide on?
The text was updated successfully, but these errors were encountered: