Skip to content

Commit 669a1d5

Browse files
authored
Merge pull request #132 from BoostGSoC21/develop
[GSoC'21] Creating documentation using AsciiDoctor
2 parents db29cdf + 76a6b7a commit 669a1d5

File tree

129 files changed

+13357
-19343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+13357
-19343
lines changed

doc/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/html/
2+
/pdf/

doc/Jamfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Copyright 2021 Shikhar Vashistha
2+
#
3+
# Distributed under the Boost Software License, Version 1.0.
4+
# (http://www.boost.org/LICENSE_1_0.txt)
5+
# Copyright 2021 Shikhar Vashistha
6+
#
7+
# Distributed under the Boost Software License, Version 1.0.
8+
# (http://www.boost.org/LICENSE_1_0.txt)
9+
10+
import asciidoctor ;
11+
12+
html ublas.html : ublas.adoc ;
13+
14+
install html_ : ublas.html : <location>html ;
15+
16+
pdf ublas.pdf : ublas.adoc ;
17+
18+
explicit ublas.pdf ;
19+
20+
install pdf_ : ublas.pdf : <location>pdf ;
21+
22+
explicit pdf_ ;
23+
24+
alias boostdoc ;
25+
26+
explicit boostdoc ;
27+
28+
alias boostrelease : html_ ;
29+
30+
explicit boostrelease ;

0 commit comments

Comments
 (0)