diff options
author | David Robillard <d@drobilla.net> | 2014-08-05 17:20:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-05 17:20:57 +0000 |
commit | 28e3aa5f942878e2f5bfe9ebdcdd76637354f7bb (patch) | |
tree | c342d7a85baee5a22ae7f6f075c46321ec46793d /plugins/wscript | |
parent | 66260cf4c1df72e0b6bb9cb7f8f794a2ecb223d4 (diff) | |
download | lv2-28e3aa5f942878e2f5bfe9ebdcdd76637354f7bb.tar.xz |
Improve book style.
Diffstat (limited to 'plugins/wscript')
-rw-r--r-- | plugins/wscript | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/wscript b/plugins/wscript index 63d01ae..c3ead30 100644 --- a/plugins/wscript +++ b/plugins/wscript @@ -24,11 +24,16 @@ def build(bld): files += bld.path.ant_glob('%s/*.ttl' % i) files += bld.path.ant_glob('%s/*.c' % i) + # Compile book sources into book.txt asciidoc source bld(rule = bld_book_src, source = files, target = 'book.txt') - bld(rule = 'asciidoc -b html -o ${TGT} ${SRC}', + # Run asciidoc to generate book.html + stylesdir = bld.path.find_node('../doc/').abspath() + pygments_style = bld.path.find_node('../doc/style.css').abspath() + bld(rule = 'asciidoc -a stylesdir=%s -a source-highlighter=pygments -a pygments-style=%s -b html -o ${TGT} ${SRC}' % ( + stylesdir, pygments_style), source = 'book.txt', target = 'book.html') |