module documentation

CodeHilite Extension for Python-Markdown ======================================== Adds code/syntax highlighting to standard Python-Markdown code blocks. See <https://Python-Markdown.github.io/extensions/code_hilite> for documentation. Original code Copyright 2006-2008 [Waylan Limberg](http://achinghead.com/). All changes Copyright 2008-2014 The Python Markdown Project License: [BSD](https://opensource.org/licenses/bsd-license.php)

Class CodeHilite Determine language of source code, and pass it on to the Pygments highlighter.
Class CodeHiliteExtension Add source code highlighting to markdown codeblocks.
Class HiliteTreeprocessor Highlight source code in code blocks.
Function makeExtension Undocumented
Function parse_hl_lines Support our syntax for emphasizing certain lines of code.
Variable pygments Undocumented
def makeExtension(**kwargs): (source)

Undocumented

def parse_hl_lines(expr): (source)

Support our syntax for emphasizing certain lines of code. expr should be like '1 2' to emphasize lines 1 and 2 of a code block. Returns a list of ints, the line numbers to emphasize.

pygments: bool = (source)

Undocumented