diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-04 15:47:45 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-04 15:47:45 -0700 |
commit | 63f946ced9e4a13752ee7fc9fc3359c99ef8fb90 (patch) | |
tree | 1ef52efeb74d6ed512eb2ea8c65fe96fec343a61 | |
parent | af9f3cf89f09d735adb723830510dfe7a86b6b67 (diff) | |
download | gitbook-63f946ced9e4a13752ee7fc9fc3359c99ef8fb90.zip gitbook-63f946ced9e4a13752ee7fc9fc3359c99ef8fb90.tar.gz gitbook-63f946ced9e4a13752ee7fc9fc3359c99ef8fb90.tar.bz2 |
In page generator, add break for printing between pages
-rw-r--r-- | theme/templates/page.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/theme/templates/page.html b/theme/templates/page.html index 8b1048d..ef61d8f 100644 --- a/theme/templates/page.html +++ b/theme/templates/page.html @@ -4,8 +4,7 @@ {% block content %} {% for page in pages %} - <hr> - <article id="{{ page.path }}"> + <article id="{{ page.path }}" style="page-break-after: always;"> {% for section in page.content %} {% if section.type == "normal" %} {% autoescape false %}{{ section.content }}{% endautoescape %} |