diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-11-16 06:53:52 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-11-16 06:53:52 -0800 |
commit | 6a226041adb8a1e0692c64b13b4ad0593123a6b4 (patch) | |
tree | 2719963c20d9a861ca5352140d2277d5cc564dcf | |
parent | c65d13ac2dcddfddd2d3e049b8a63c372d146c64 (diff) | |
download | pandoc-6a226041adb8a1e0692c64b13b4ad0593123a6b4.tar.gz |
Use generic example.com link in README and changelog.
-rw-r--r-- | README | 5 | ||||
-rw-r--r-- | changelog | 6 |
2 files changed, 6 insertions, 5 deletions
@@ -3598,8 +3598,9 @@ instead, use raw HTML in your source and add `data-external="1"` to the tag with the `src` attribute. For example: <audio controls="1"> - <source src="http://www.sixbarsjail.it/tmp/bach_toccata.mp3" - data-external="1" type="audio/mpeg"></source> + <source src="http://example.com/music/toccata.mp3" + data-external="1" type="audio/mpeg"> + </source> </audio> Literate Haskell support @@ -112,9 +112,9 @@ pandoc (1.15.2) the tags linking to media that should not be downloaded. Example: <audio controls="1"> - <source - src="https://example.com/downloads/tocatta.mp3" - type="audio/mpeg"></source> + <source src="http://example.com/music/toccata.mp3" + data-external="1" type="audio/mpeg"> + </source> </audio> * HTML writer: use width on whole table if col widths sum to < 100%. |