Basic list rendering.

This commit is contained in:
Sergio Martínez Portela 2021-10-03 17:53:22 +02:00
parent c5925afa28
commit 5878f158c3
2 changed files with 14 additions and 3 deletions

View File

@ -137,7 +137,8 @@ def render_code_block(element, acc):
def render_text(element, acc): def render_text(element, acc):
pass for chunk in element.content.contents:
acc.append("<u>{}</u> ".format(chunk))
def render_tag(element, acc): def render_tag(element, acc):

View File

@ -1,7 +1,17 @@
.node .node { .node .node {
margin-left: 1ex; margin: 1ex;
padding-left: 1ex; padding-left: 1ex;
border-left: 1px solid #444; border-left: 3px solid #444;
}
h1.title .state {
font-style: italic;
font-size: 50%;
vertical-align: middle;
}
h1.title a {
color: black;
text-decoration: underline dotted 2px;
} }
li .tag { li .tag {