Compare commits
3 commits
8ad8f73fea
...
dc48cd411c
Author | SHA1 | Date | |
---|---|---|---|
dc48cd411c | |||
aa4120a67b | |||
e76e861a17 |
2 changed files with 2 additions and 2 deletions
|
@ -291,7 +291,7 @@ class HTMLGenerator(OutputGenerator):
|
|||
self.writeln("<!-- FIXME: Citations not implemented -->")
|
||||
|
||||
def generate_Cite(self, e: Cite):
|
||||
self.writeln("<!-- FIXME: Cites not implemented -->")
|
||||
self.generate_simple_tag(e, tag="a", attributes=self.common_attributes(e) | {"href": f"#ref-{e.citations[0].id}"})
|
||||
|
||||
def generate_Definition(self, e: Definition):
|
||||
self.writeln("<!-- FIXME: Definitions not implemented -->")
|
||||
|
|
|
@ -37,7 +37,7 @@ def parse_string(s: str) -> list[Union[Str, Space]]:
|
|||
# we ever want to disable or enable some of panflute's markdown extensions,
|
||||
# this is the place to do it.
|
||||
def import_md(s: str, standalone: bool=True) -> Union[Doc, list[Element]]:
|
||||
return convert_text(s, standalone=standalone, input_format="markdown-definition_lists-citations-latex_macros")
|
||||
return convert_text(s, standalone=standalone, input_format="markdown-definition_lists-latex_macros")
|
||||
|
||||
def import_md_list(s: str) -> list[Element]:
|
||||
return import_md(s, standalone=False)
|
||||
|
|
Loading…
Reference in a new issue