Pass code block's language to the specified Pygments formatter in CodeHilite#1258
Merged
waylan merged 7 commits intoPython-Markdown:masterfrom May 18, 2022
ccwang002:pass-pygments-fmt-lang
Merged
Pass code block's language to the specified Pygments formatter in CodeHilite#1258waylan merged 7 commits intoPython-Markdown:masterfrom ccwang002:pass-pygments-fmt-lang
waylan merged 7 commits intoPython-Markdown:masterfrom
ccwang002:pass-pygments-fmt-lang
Conversation
Add an extra option `lang_str` to pass the language of the code block to the specified Pygments formatter.
Include an example of custom Pygments formatter that keep the language of the code in the output using the new option lang_str
Member
|
I made a few tweaks to adjust some awkward wording. Also, I altered the example to use the extension class directly rather than using the string name. While both ways are supported, we recommend users use the Python objects. Therefore, our documentation should reflect that. Otherwise, this looks good to me. |
Contributor
Author
|
Nice. Thanks for the feedback and review 👍 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As per the discussions in PR #1255, I add a new option
lang_strthat passes the language of a code block to the specified Pygments formatter.lang_strhas the value of{lang_prefix}{lang}, so it respects the existing language prefix option.While
lang_strhas no effect the builtin Pygments formatters, users can leverage this information in their custom formatter to annotate the generated output.An example I added to the documentation annotates the language as a class of the
<code>tag. I copied it below:The formatter above will output the following HTML structure for the code block: