make the pydot syntax backwards compatible with code fences
without this, the code fence parser was getting thrown off if you didn't have the pydot extension loaded, which was thwarting backwards compatibility. this makes the pydot bits look like an attribute to the vanilla parser, so at least then the vanilla markdown renders as intended
This commit is contained in:
parent
08305e26db
commit
502adac89c
@ -20,7 +20,7 @@ class InlinePydot(markdown.Extension):
|
||||
class InlinePydotPreprocessor(markdown.preprocessors.Preprocessor):
|
||||
"""Identify dot codeblocks and run them through pydot."""
|
||||
|
||||
BLOCK_RE = re.compile(r'~~~pydot:(?P<filename>[^\s]+)\n(?P<content>.*?)~~~', re.DOTALL)
|
||||
BLOCK_RE = re.compile(r'~~~{\s+pydot:(?P<filename>[^\s]+)\s+}\n(?P<content>.*?)~~~', re.DOTALL)
|
||||
|
||||
def run(self, lines):
|
||||
"""Match and generate diagrams from dot code blocks."""
|
||||
|
@ -1,7 +1,7 @@
|
||||
# test
|
||||
|
||||
test
|
||||
~~~pydot:attack-plan
|
||||
~~~{ pydot:attack-plan }
|
||||
digraph G {
|
||||
rankdir=LR
|
||||
Earth
|
||||
|
@ -1,7 +1,7 @@
|
||||
# test
|
||||
|
||||
test
|
||||
~~~pydot:attack-plan
|
||||
~~~{ pydot:attack-plan }
|
||||
rankdir=LR
|
||||
Earth
|
||||
Mars
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
test
|
||||
|
||||
~~~pydot:attack-plan
|
||||
~~~{ pydot:attack-plan }
|
||||
digraph G {
|
||||
rankdir=LR
|
||||
Earth
|
||||
@ -13,7 +13,7 @@ digraph G {
|
||||
|
||||
more test
|
||||
|
||||
~~~pydot:new-attack-plan
|
||||
~~~{ pydot:new-attack-plan }
|
||||
digraph H {
|
||||
rankdir=LR
|
||||
Venus
|
||||
|
Loading…
Reference in New Issue
Block a user