Browse Source

WIP import and include

pull/28/head
Jan Černohorský 2 years ago
parent
commit
990f5b3bb9
  1. 2
      command.py
  2. 62
      formatitko.py
  3. 7
      test-import.md
  4. 14
      test-include.md
  5. 13
      test.md
  6. 8
      util.py

2
command.py

@ -13,7 +13,7 @@ class InlineCommand(Span, Command):
if len(content) == 1 and isinstance(content[0], Para): if len(content) == 1 and isinstance(content[0], Para):
return Span(*content[0].content) return Span(*content[0].content)
else: else:
return Div(*content) raise SyntaxError(f"The command {self.attributes['c']} returned multiple Paragraphs and must be executed using `::: {{c={self.attributes['c']}}}\\n:::`.")
pass pass
class MultilineCommand(Div, Command): class MultilineCommand(Div, Command):

62
formatitko.py

@ -1,16 +1,16 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# Import local files
from whitespace import *
from command import *
from util import *
import builtin_commands
from panflute import * from panflute import *
import re import re
import sys import sys
from typing import List from typing import List
# Import local files
from whitespace import *
from command import *
from util import *
from mj_show import show from mj_show import show
flags = ["dog"] flags = ["dog"]
@ -20,14 +20,14 @@ def executeCommand(source: Code, element: Element) -> List[Element]:
mode = 'empty' mode = 'empty'
text = "" text = ""
content = [] content = []
def print(s: str): def print(s: str=""):
nonlocal mode, text nonlocal mode, text
if mode == 'elements': if mode == 'elements':
raise SyntaxError("Cannot use `print` and `appendChild` in one command at the same time.") raise SyntaxError("Cannot use `print` and `appendChild` in one command at the same time.")
mode = 'text' mode = 'text'
text += s text += s
def println(s: str): def println(s: str=""):
print(s+"\n") print(s+"\n")
def appendChild(e: Element): def appendChild(e: Element):
@ -53,6 +53,9 @@ def executeCommand(source: Code, element: Element) -> List[Element]:
def transform(e: Element, doc: Doc) -> Element: # Returns next sibling element to transform def transform(e: Element, doc: Doc) -> Element: # Returns next sibling element to transform
"""Transform the AST, making format-agnostic changes.""" """Transform the AST, making format-agnostic changes."""
global commands
global flags
if isinstance(e, Whitespace) and bavlna(e): if isinstance(e, Whitespace) and bavlna(e):
e = NBSP() e = NBSP()
@ -60,11 +63,11 @@ def transform(e: Element, doc: Doc) -> Element: # Returns next sibling element t
# `if` attribute. Only show this element if flag is set. # `if` attribute. Only show this element if flag is set.
if "if" in e.attributes: if "if" in e.attributes:
if not e.attributes["if"] in flags: if not e.attributes["if"] in flags:
return Null() return nullify(e)
# `ifn` attribute. Only show this element if flag is NOT set # `ifn` attribute. Only show this element if flag is NOT set
if "ifn" in e.attributes: if "ifn" in e.attributes:
if e.attributes["ifn"] in flags: if e.attributes["ifn"] in flags:
return Null() return nullify(e)
# `c` attribute. Execute a command with the name saved in this attribute. # `c` attribute. Execute a command with the name saved in this attribute.
if (isinstance(e, Div) or isinstance(e, Span)) and "c" in e.attributes: if (isinstance(e, Div) or isinstance(e, Span)) and "c" in e.attributes:
@ -72,32 +75,54 @@ def transform(e: Element, doc: Doc) -> Element: # Returns next sibling element t
e = MultilineCommand(*e.content, identifier=e.identifier, classes=e.classes, attributes=e.attributes) e = MultilineCommand(*e.content, identifier=e.identifier, classes=e.classes, attributes=e.attributes)
else: else:
e = InlineCommand(*e.content, identifier=e.identifier, classes=e.classes, attributes=e.attributes) e = InlineCommand(*e.content, identifier=e.identifier, classes=e.classes, attributes=e.attributes)
print(f"Created inline command {e}")
# Execute python code inside source code block # Execute python code inside source code block
if isinstance(e, CodeBlock) and hasattr(e, "classes") and "python" in e.classes and "run" in e.classes: if isinstance(e, CodeBlock) and hasattr(e, "classes") and "python" in e.classes and "run" in e.classes:
exec(e.text) exec(e.text)
return Null() return nullify(e)
# Define commands ## Define commands
# TODO: def/longdef? # TODO: def/longdef?
if isinstance(e, CodeBlock) and hasattr(e, "classes") and "python" in e.classes and hasattr(e, "attributes"): if isinstance(e, CodeBlock) and hasattr(e, "classes") and "python" in e.classes and hasattr(e, "attributes"):
if "define" in e.attributes: if "define" in e.attributes:
if not e.attributes["define"] in commands: if not e.attributes["define"] in commands:
commands[e.attributes["define"]] = compile(e.text, '<string>', 'exec') commands[e.attributes["define"]] = compile(e.text, '<string>', 'exec')
return Null() return nullify(e)
else: else:
raise NameError(f"Command already defined: '{e.attributes['define']}'") raise NameError(f"Command already defined: '{e.attributes['define']}'")
if "redefine" in e.attributes: if "redefine" in e.attributes:
commands[e.attributes["redefine"]] = compile(e.text, '<string>', 'exec') commands[e.attributes["redefine"]] = compile(e.text, '<string>', 'exec')
return Null() return nullify(e)
# Handle special command shorthand [!commandname]{} if isinstance(e, Span) and len(e.content) == 1 and isinstance(e.content[0], Str):
if isinstance(e, Span) and len(e.content) == 1 and isinstance(e.content[0], Str) and re.match(r"^![\w.]+$", e.content[0].text): print(isinstance(e, Span))
## Handle special command shorthand [!commandname]{}
if re.match(r"^![\w.]+$", e.content[0].text):
e = InlineCommand(identifier=e.identifier, classes=e.classes, attributes={**e.attributes, "c": e.content[0].text[1:]}) e = InlineCommand(identifier=e.identifier, classes=e.classes, attributes={**e.attributes, "c": e.content[0].text[1:]})
# Execute commands ## Handle include [>path/file.md]{} TODO: implement properly as commands
# This is for including content from files with their own flags
# and commands without affecting the state of the current
# document.
elif re.match(r"^>.+$", e.content[0].text):
includedDoc = convert_text(open(e.content[0].text[1:], "r").read(), standalone=True) # TODO: Put into function
oCommands = commands.copy()
oFlags = flags[:]
includedDoc = includedDoc.walk(transform)
commands = oCommands
flags = oFlags
#e = Div(*includedDoc.content)
## Handle import [#path/file.md]{} TODO: implement properly as commands
# This is the exact opposite of include. We take the commands
# and flags but drop the content.
elif re.match(r"^#.+$", e.content[0].text):
importedDoc = convert_text(open(e.content[0].text[1:], "r").read(), standalone=True) # TODO: Put into function
importedDoc.walk(transform)
return nullify(e)
## Execute commands
# Walk transforms the children first, then the root element, # Walk transforms the children first, then the root element,
# so the content of the element the command receives is # so the content of the element the command receives is
# already transformed. # already transformed.
@ -110,7 +135,8 @@ def transform(e: Element, doc: Doc) -> Element: # Returns next sibling element t
return e return e
doc = convert_text(open(sys.argv[1], "r").read(), standalone=True, extra_args=["-f", "markdown+fenced_code_attributes"]) doc = convert_text(open(sys.argv[1], "r").read(), standalone=True) # TODO: Put into function so we can specify extensions and parameters globally.
print(show(doc)) print(show(doc))
doc = doc.walk(transform) doc = doc.walk(transform)

7
test-import.md

@ -0,0 +1,7 @@
``` {.python define=nop}
appendChildren(element.content)
```
``` {.python define=opendatatask}
print("Toto je praktická open-data úloha. V [odevzdávátku](https://ksp.mff.cuni.cz/h/odevzdavatko/) si necháte vygenerovat vstupy a odevzdáte příslušné výstupy. Záleží jen na vás, jak výstupy vyrobíte.")
```

14
test-include.md

@ -0,0 +1,14 @@
I am a little piece of content
# With a title!
And things...
``` {.python .run}
# I set my own flags!
flags.append("cat")
```
:::{if=cat}
This should be only shown to included cats.
:::

13
test.md

@ -1,15 +1,14 @@
``` {.python define=nop} ---
appendChildren(element.content) title: 'Wooooo a title'
``` ---
[#test-import.md]{}
``` {.python define=opendatatask}
print("Toto je praktická open-data úloha. V [odevzdávátku](https://ksp.mff.cuni.cz/h/odevzdavatko/) si necháte vygenerovat vstupy a odevzdáte příslušné výstupy. Záleží jen na vás, jak výstupy vyrobíte.")
```
# Hello world! # Hello world!
This is an *example* **yay**! This is an *example* **yay**!
[>test-include.md]{}
:::{if=cat} :::{if=cat}
This should only be shown to cats This should only be shown to cats
::: :::

8
util.py

@ -1,4 +1,4 @@
from panflute import Element, Block, Inline from panflute import Element, Block, Inline, Null, Str
import re import re
def replaceEl(e: Element, r: Element) -> Element: def replaceEl(e: Element, r: Element) -> Element:
@ -8,3 +8,9 @@ def replaceEl(e: Element, r: Element) -> Element:
return r return r
def deleteEl(e: Element): def deleteEl(e: Element):
del e.parent.content[e.index] del e.parent.content[e.index]
def nullify(e: Element):
if isinstance(e, Inline):
return Str("")
elif isinstance(e, Block):
return Null()

Loading…
Cancel
Save