Skip to content

Commit

Permalink
feat: ordered list rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
realaravinth committed Jan 16, 2022
1 parent 25abc19 commit df14f8b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions templates/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ code {

.code-block {
display: block;
margin: 5px 0;
padding: 20px;
}

iframe {
Expand Down Expand Up @@ -145,3 +147,7 @@ blockquote {
border-left: 4px solid #333;
font-style: italic;
}

ol, ul {
margin-left: 40px;
}
10 changes: 10 additions & 0 deletions templates/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<. include!("./post_meta.html"); .>
</head>
<body>
<. let mut open_list = false ; .>
<main class="container">
<h1><.= data.title .></h1>
<p class="meta">
Expand All @@ -20,6 +21,9 @@ <h1><.= data.title .></h1>
<article>
<. let paragraphs = &data.content.body_model.paragraphs; .>
<. for (pindex, p) in paragraphs.iter().enumerate() {.>
<. if open_list && p.type_ != "OLI" { .>
</ol>
<. } .>
<. if pindex == 0 && p.type_ == "H3" {.>
<. continue; .>
<.}.>
Expand Down Expand Up @@ -50,6 +54,12 @@ <h6><.= p.text .></h6>
<.} else {.>
<iframe src="<.= src .>" frameborder="0"></iframe>
<.}.>
<.} else if p.type_ == "OLI" {.>
<. if !open_list { .>
<. open_list = true;.>
<ol>
<. } .>
<li><.= p.text .></li>
<.} else {.>
<p>
<. include!("./_markup.html"); .>
Expand Down

0 comments on commit df14f8b

Please sign in to comment.