From 2b18c6a9b32373038be85e2078fa3ec52488cfed Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?=
')
for chunk in tokens:
if isinstance(chunk, str):
- acc.append('{}
') + acc.append('{}'.format(lines)) elif isinstance(chunk, Link): link_target = chunk.value if link_target.startswith('id:'): @@ -321,6 +323,7 @@ def render_text_tokens(tokens, acc): )) # else: # raise NotImplementedError('TextToken: {}'.format(chunk)) + acc.append('
') def render_tag(element, acc): diff --git a/static/style.css b/static/style.css index 1829181..e864102 100644 --- a/static/style.css +++ b/static/style.css @@ -29,6 +29,12 @@ html, body { content: "🮦"; } +/* Inhibittags inside items */ +/* TODO: Remove need for this on generator */ +.item p { + display: inline; +} + /* Headers */ h1 { font-size: 150%;