You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the --self-contained option to convert markdown->html, data-uri images within CSS miss the enclosing "url()" and are therefore not displayed.
Pandoc version: 1.15.1 on OsX.
Sample files:
index.md
<link rel="stylesheet" href="test.css" type="text/css" />
This is some content.
The body element has a background image.
test.css
body {
background: white url('http://www.git-scm.com/images/[email protected]') no-repeat left 80px;
}
Command lines used to produce the comparison files:
pandoc -f markdown -t html --standalone -o index.html index.md
pandoc -f markdown -t html --standalone --self-contained -o index_sc.html index.md
The text was updated successfully, but these errors were encountered:
When using the
--self-contained
option to convert markdown->html, data-uri images within CSS miss the enclosing "url()" and are therefore not displayed.Pandoc version: 1.15.1 on OsX.
Sample files:
index.md
test.css
Command lines used to produce the comparison files:
The text was updated successfully, but these errors were encountered: