user guide: add rscons logo

This commit is contained in:
Josh Holtrop 2019-09-11 23:18:38 -04:00
parent 0cafb8c5b3
commit ec60201a62
2 changed files with 8 additions and 1 deletions

View File

@ -31,6 +31,11 @@
.separator {
height: 2em;
}
.img_block_center {
display: block;
margin-left: auto;
margin-right: auto;
}
.page_nav {
width: 100%;
table-layout: fixed;

View File

@ -154,7 +154,8 @@ class Generator
end
def render_toc
toc_content = %[<h1>Table of Contents</h1>\n]
toc_content = %[<img class="img_block_center" src="rscons_logo_1000.png" />]
toc_content += %[<h1>Table of Contents</h1>\n]
@sections.each do |section|
indent = section.number.split(".").size - 1
toc_content += %[<span style="padding-left: #{4 * indent}ex;">]
@ -223,5 +224,6 @@ end
input = load_file("doc/user_guide.md")
FileUtils.rm_rf("gen/user_guide")
FileUtils.mkdir_p("gen/user_guide")
FileUtils.cp("img/rscons_logo_1000.png", "gen/user_guide")
Generator.new(input, "gen/user_guide/user_guide.html", false)
Generator.new(input, "gen/user_guide", true)