aboutsummaryrefslogtreecommitdiffstats
path: root/screenplain
diff options
context:
space:
mode:
authorMartin Vilcans <martin@librador.com>2012-02-07 22:38:22 +0100
committerMartin Vilcans <martin@librador.com>2012-02-07 22:40:14 +0100
commit4ef66239b98307dffea04481812cdfa126819c07 (patch)
tree0fd843b4241a93e43672930efbd065f15a52ef3a /screenplain
parentb9d9e51bcf448cfa777012bd3ea0fe1b5ad0c2ed (diff)
downloadscreenplain-4ef66239b98307dffea04481812cdfa126819c07.tar.gz
Scene headings are now h6 in HTML output
Diffstat (limited to 'screenplain')
-rw-r--r--screenplain/export/default.css2
-rw-r--r--screenplain/export/html.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/screenplain/export/default.css b/screenplain/export/default.css
index d87162b..a0cbd4c 100644
--- a/screenplain/export/default.css
+++ b/screenplain/export/default.css
@@ -40,7 +40,7 @@ footer, header, hgroup, menu, nav, section {
}
/* Slug */
-.screenplay > h2 {
+.screenplay > h6 {
width:36.14em;
margin-top: 2em;
font-weight: bold;
diff --git a/screenplain/export/html.py b/screenplain/export/html.py
index 881233c..e003bb8 100644
--- a/screenplain/export/html.py
+++ b/screenplain/export/html.py
@@ -82,7 +82,7 @@ def _write_dialog_block(dialog, out):
def format_slug(slug, out):
num = slug.scene_number
- with tags(out, 'h2'):
+ with tags(out, 'h6'):
if num:
with tags(out, 'span class="scnuml"'):
out.write(to_html(slug.scene_number))