Skip to content

Commit 7b48a06

Browse files
committed
wip:
1 parent 0334ca0 commit 7b48a06

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Project.toml

+3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@ uuid = "44d3d7a6-8a23-5bf8-98c5-b353f8df5ec9"
33
version = "0.10.2"
44

55
[deps]
6+
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
67
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
78
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
9+
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
10+
Gumbo = "708ec375-b3d6-5a57-a7ce-8257bf98657a"
811
Highlights = "eafb193a-b7ab-5a9e-9068-77385905fa72"
912
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
1013
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"

src/plots.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function Base.display(
1818
report::Weave.Report,
1919
m::MIME"image/svg+xml",
2020
data::Plots.Plot{Plots.PlotlyBackend},
21-
)#
21+
)
2222
# Remove extra spaces from start of line for pandoc
2323
s = repr(MIME("text/html"), data)
2424
splitted = split(s, "\n")
@@ -40,7 +40,7 @@ function Base.display(
4040
report::Weave.Report,
4141
m::MIME"image/png",
4242
data::Plots.Plot{Plots.PlotlyBackend},
43-
)#
43+
)
4444
display(report, MIME("image/svg+xml"), data)
4545
end
4646

templates/md2html.tpl

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
<div class = "col-md-12 twelve columns">
3030
<div class="title">
3131
{{#:title}}<h1 class="title">{{:title}}</h1>{{/:title}}
32-
{{#:author}}<h5>{{{:author}}}</h5>{{/:author}}
33-
{{#:date}}<h5>{{{:date}}}</h5>{{/:date}}
32+
{{#:author}}<h4><em>{{{:author}}}</em></h4>{{/:author}}
33+
{{#:date}}<h4><em>{{{:date}}}</em></h4>{{/:date}}
3434
</div>
3535

3636
{{{ :body }}}

0 commit comments

Comments
 (0)