Fix linter
This commit is contained in:
parent
da35ba5745
commit
cf36f85708
2 changed files with 3 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
$image_spacing: 30px;
|
||||
$image-spacing: 30px;
|
||||
|
||||
|
||||
body.cover {
|
||||
|
@ -25,12 +25,12 @@ body.content {
|
|||
font-size: 12px;
|
||||
|
||||
img {
|
||||
margin-top: $image-spacing;
|
||||
width: 100%;
|
||||
margin-top: $image_spacing
|
||||
}
|
||||
|
||||
p.caption {
|
||||
margin: 1px 5px $image_spacing;
|
||||
margin: 1px 5px $image-spacing;
|
||||
padding: 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
|
|
@ -47,5 +47,3 @@ def parse_template(doc, config):
|
|||
]:
|
||||
parsed_doc = parser(parsed_doc, config)
|
||||
return render_template(parsed_doc, config)
|
||||
|
||||
|
||||
|
|
Reference in a new issue