mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 13:42:14 +00:00
This adds a custom highlight.js jam syntax. The hljs pack only includes the minimal syntax for bash, cpp, dos, and jam. And the tagging with to jam of source snippets is only partially done.
31 lines
791 B
Plaintext
31 lines
791 B
Plaintext
# Copyright 2004,2006 Vladimir Prus
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
import asciidoctor ;
|
|
|
|
project tools/build/doc
|
|
;
|
|
|
|
html index : src/standalone.adoc ;
|
|
explicit index ;
|
|
|
|
install html-hljs : [ glob src/hljs/*.js ] : <location>html/hljs ;
|
|
explicit html-hljs ;
|
|
|
|
install html-hljs-styles : [ glob src/hljs/styles/*.css ] : <location>html/hljs/styles ;
|
|
explicit html-hljs-styles ;
|
|
|
|
install html : index : <location>html ;
|
|
explicit html ;
|
|
|
|
alias standalone-html : html html-hljs html-hljs-styles ;
|
|
|
|
###############################################################################
|
|
|
|
alias boostdoc ;
|
|
explicit boostdoc ;
|
|
|
|
alias boostrelease : standalone-html ;
|
|
explicit boostrelease ;
|