Basic list rendering.
This commit is contained in:
parent
c5925afa28
commit
5878f158c3
@ -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):
|
||||||
|
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user