mirror of
https://github.com/beetbox/beets.git
synced 2026-01-20 07:02:39 +01:00
bypass Kramdown for HTML escaping argharghargh!
It looks like GitHub Pages is using an old version of Kramdown (not sure which) with a bug that breaks HTML pass-through. Had to move the video embed out of the Markdown document. Maybe I'll move to Redcarpet or whatever in the future.
This commit is contained in:
parent
140cbd2778
commit
b438513959
2 changed files with 5 additions and 2 deletions
|
|
@ -75,6 +75,11 @@
|
|||
<div class="row">
|
||||
|
||||
<div class="span8 screen" id="{{ page.section }}">
|
||||
{% if page.section == 'main' %}
|
||||
<div class="embed">
|
||||
<iframe width="560" height="345" src="http://www.youtube.com/embed/ZaqJmjM23D0" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
|
||||
</div>
|
||||
{% endif %}
|
||||
{{ content }}
|
||||
{% if page.section == 'blog' %}
|
||||
<p class="articleFooter">
|
||||
|
|
|
|||
2
index.md
2
index.md
|
|
@ -3,8 +3,6 @@ layout: main
|
|||
section: main
|
||||
shorttitle: the music geek’s media organizer
|
||||
---
|
||||
<div class="embed"><iframe width="560" height="345" src="http://www.youtube.com/embed/ZaqJmjM23D0" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
|
||||
|
||||
The purpose of beets is to get your music collection right once and for all. It
|
||||
catalogs your collection, automatically improving its metadata as it goes using
|
||||
the [MusicBrainz][] database. (It also downloads cover art for albums it
|
||||
|
|
|
|||
Loading…
Reference in a new issue