Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: Build & Deploy Asciidoctor Pages

on:
push:
branches: ["**"] # build on all branches; deploy only from default branch
pull_request:

# GitHub Pages needs these permissions on the deploy job
permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Build site
runs-on: ubuntu-latest
# Use the same container image as in GitLab
container:
image: asciidoctor/docker-asciidoctor
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install tools (apk) and Node.js
run: |
apk update
apk add --no-cache nodejs curl unzip tar
which node || true
- name: Install asciidoctor-chunker
working-directory: /tmp
run: |
curl -L -o asciidoctor-chunker_v1.0.4.zip \
https://github.com/wshito/asciidoctor-chunker/releases/download/v1.0.4/asciidoctor-chunker_v1.0.4.zip
unzip -p asciidoctor-chunker_v1.0.4.zip '*/asciidoctor-chunker.js' > /usr/bin/asciidoctor-chunker
chmod 0755 /usr/bin/asciidoctor-chunker

- name: Run Asciidoctor
run: |
asciidoctor -a data-uri \
-a reproducible \
-a icons=font \
-a source-highlighter=Pygments \
-a experimental \
-a stylesheet=$GITHUB_WORKSPACE/src/stylesheets/readthedocs-new.css \
-D /tmp \
-R doc/src '**/*.adoc'

- name: Chunk HTML
run: |
mkdir -p public
asciidoctor-chunker \
--depth 1 \
--outdir public \
--titlePage '' \
/tmp/index.html

- name: Copy stylesheet to public
run: |
cp -v src/asciidoctor-chunker.css public || true

# Upload the 'public' folder as the artifact GitHub Pages will deploy
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: public

deploy:
name: Deploy to GitHub Pages
needs: build
runs-on: ubuntu-latest
if: >
github.event_name == 'push' &&
github.ref_name == github.event.repository.default_branch
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pbuild.log
21 changes: 21 additions & 0 deletions doc/asciidoctor-chunker_v1.0.6/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
122 changes: 122 additions & 0 deletions doc/asciidoctor-chunker_v1.0.6/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
# asciidoctor-chunker

[![npm version](https://badge.fury.io/js/asciidoctor-chunker.svg)](https://badge.fury.io/js/asciidoctor-chunker)
[![Node.js CI](https://github.com/wshito/asciidoctor-chunker/actions/workflows/node.js.yml/badge.svg)](https://github.com/wshito/asciidoctor-chunker/actions/workflows/node.js.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Generates chunked (multi-page) HTML from Asciidoctor's single HTML file with the support of fine-tuned splits by chapters, sections, or any depth of subsections. Here is [the sample output.](http://www.seinan-gu.ac.jp/~shito/asciidoctor/html_chunk/index.html) Each chapter can have different levels of extraction depth. See [What it does](#what-it-does) for details. The asciidoctor-chunker is written in JavaScript and is very easy to install. See [Installation](#installation).

## Latest News

See [CHANGELOG.md](CHANGELOG.md) for the complete history

- 2023/2/20 [Ver 1.0.6](https://github.com/wshito/asciidoctor-chunker/releases) Page navigation is disabled with shift+arrow (thanks to [@chloekek](https://github.com/chloekek)).
- 2022/9/14 [Ver 1.0.5](https://github.com/wshito/asciidoctor-chunker/releases) Node.js v18.x is supported. The `npm` installs the shebang script so you can invoke asciidoctor-chunker with `npx`. When the target link within the document is missing, the anchor is still created with `target-missing` class attribute.
- 2021/8/3 [Ver 1.0.4](https://github.com/wshito/asciidoctor-chunker/releases) Added the keyboard shotcuts for the page navigation with arrow keys. Added the accessibility labels on the page navigation for screen readers.
- 2021/6/25 [Ver 1.0.3](https://github.com/wshito/asciidoctor-chunker/releases) Fixed the security vulnerabilities in the dependencies.
- 2021/5/9 [Ver 1.0.2](https://github.com/wshito/asciidoctor-chunker/releases) The toc item for the titlepage can be configured with `--titlePage` option (thanks to [@johnthad](https://github.com/johnthad)).

## What it does

Asciidoctor-Chunker generates chunked HTML from a single HTML generated by Asciidoctor.

1. Splits part preambles and chapters (or any depth of section level) into separate files. Each chapter can be configured to have a different depth for extractions.
1. Extracts css inside the style element into a separate file so the browser can cache and share it among all the pages.
1. Places footnotes in the file they belong to. This also means that the multiply referred footnotes are placed in every referrer's files and sets the link back to the referrer's id within the page.
1. Re-writes the relative links (cross references) in order to point to the appropriate chunked files. The `target-missing` class attribute is added to the anchor when the link target is missing (is undefined in the source document).
1. Copies the local images and linked files (with `link`, `script` and `img` tags) whose paths are relative, to the directory relative to the chunked html output. Files are only copied if they are new or modified compared to the previously copied one.
1. Adds a titlepage link in the toc and non-opinionated page navigation at the bottom of each page. Arrow-keys navigation is supported.
1. Highlights the current page toc items and they get scrolled into the viewport.

Here is [the sample output](http://www.seinan-gu.ac.jp/~shito/asciidoctor/html_chunk/index.html) created from the [Asciidoctor User Manual](https://asciidoctor.org/docs/user-manual/). The footer on the sample page is added by setting the asciidoctor attribute and is not added by asciidoctor-chunker.


## Installation

Asciidoctor-Chunker is written in JavaScript and runs with NodeJS.

1. Install [Node.js](https://nodejs.org/), the JavaScript runtime. This will install `npm`, the package manager CLI for Node.js.
1. If you want to install globally, invoke the following;
```
npm install -g asciidoctor-chunker
```
You can install locally under the current directory as;
```
npm install asciidoctor-chunker
```
1. Or alternatively you can download the pre-built program from the [release](https://github.com/wshito/asciidoctor-chunker/releases).

## Usage

If you installed globally:
```
asiidoctor-chunker [single-html-file] -o [output-directory]
```
If you installed locally invoke the following under the directory you installed:
```
npx asciidoctor-chunker [single-html-file] -o [output-directory]
```
If you installed the prebuild program simply run the script as:
```
./asciidoctor-chunker.js [single-html-file] -o [output-directory]
```
`[single-html-file]` is the single HTML file generated by [Asciidoctor](https://asciidoctor.org) from the book doctype. If the output directory is not specified, the default is `html_chunks` under the current directory.

More discription of usage is available with `--help` option.

## How to Configure the Depth of Extraction

You can list the multiple settings by connecting each specifier with a comma. Each specifier is consisted of either a single number or a collon separated with two numbers.

The single number sets the default level of extraction. Number 1 is the application's default and it extracts the chapter level. Number 2 for section extraction, 3 for subsection, and so on to 6 which is the maximum section level of Asciidoctor.

The list of collon separated numbers, `chap:level`, can change the extraction depth for specific chapters, so `3:2` means chapter 3 is extracted down to 2 levels (ie. section level). You can use a hyphen to specify the range of chapters to set as `chapFrom-chapTo:level`, so `1-3:5` means chapter 1 through 5 should be extracted with the depth level 5.

Example:
```
--depth 2 The default level 2, all the chapters and
sections will be extracted.
--depth 3,1:2,8:5 The default level 3, level 2 for Chap 1,
level 5 for Chap 8.
--depth 1,3-8:2 The default level 1, level 2 for Chap 3 to 8.
--depth 3-8:3 No default is set so default level is 1, and
level 3 for chap3 to 8.`
```

## Custom CSS

By default `asciidoctor-chunker.css` is included in the output directory. It provides the non-opinionated page navigation at the bottom of every chunked page. You can override this by giving a comma separated list of paths to your custom css files. They are copied into the output directory so the paths must be accessible by `asciidoctor-chunker`.

## About Strict Mode

If you have any custom elements inserted under `<div id=#content></div>` in the source single html, `asciidoctor-chunker` ignores it by default. If you want them to be included into the chunked html, set the option `--no-strictMode`.
The element will be copied to every chunked page.

## Customizing Titlepage

The `index.html` created by `asciidoctor-chunker` is selected by clicking the word **Titlepage** in the table of contents. To change the default value, use the option `--titlePage [string]` where `[string]` is the desired text.

## Example

The project contains the `example` directory where you can generate the chunked html for the [Asciidoctor User Manual](https://asciidoctor.org/docs/user-manual/) by invoking `make`. Simply go into the `example` directory and invoke `make`. This will clone the asciidoctor project from the github for the first time, then the chunked html will be generated under `test/output-chunk/html_chunk/` directory. The `index.html` is the first page.

```
$ cd example
$ make
```

## Related Projects

- [owenh000/asciidoctor-multipage](https://github.com/owenh000/asciidoctor-multipage) - The similar tool to produce multipage html. It is an extension of [Asciidoctor](https://asciidoctor.org/) and produces multipage html directly from the asciidoc source file.
- [asciidoctor/asciidoctor](https://github.com/asciidoctor/asciidoctor) - The official Asciidoctor repository.

## License

MIT

## Developer's Memo

- Unit test uses `test/resources/output/single/sample.html` generated from `test/resources/sample.adoc`.
- `npm install cheerio commander`
- `npm install --save-dev ava webpack webpack-cli webpack-shebang-plugin`
- Filename related modules: Toc.mjs
3 changes: 3 additions & 0 deletions doc/asciidoctor-chunker_v1.0.6/asciidoctor-chunker.js

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions doc/build
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

if [[ -z "$CI_PROJECT_DIR" ]]; then
echo "CI_PROJECT_DIR not defined" 1>&2
exit 1
fi

asciidoctor -a data-uri \
-a reproducible \
-a icons=font \
-a source-highlighter=Pygments \
-a experimental \
-a stylesheet="$CI_PROJECT_DIR/src/stylesheets/readthedocs-new.css" \
-D "$CI_PROJECT_DIR/html" \
-R "$CI_PROJECT_DIR/src" '**/*.adoc'

"$CI_PROJECT_DIR/asciidoctor-chunker_v1.0.6/asciidoctor-chunker.js" \
--no-strictMode \
--depth 2 \
--outdir "$CI_PROJECT_DIR/public" \
--titlePage '' "$CI_PROJECT_DIR/html/index.html"
7 changes: 7 additions & 0 deletions doc/docinfo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous">

<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.js" integrity="sha384-y23I5Q6l+B6vatafAwxRu/0oK/79VlbSz7Q9aiSZUvyWYIYsd+qj+o24G5ZU2zJz" crossorigin="anonymous"></script>

<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script>
6 changes: 6 additions & 0 deletions doc/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM asciidoctor/docker-asciidoctor

COPY asciidoctor-chunker.js /bin

CMD ["/bin/bash"]

4 changes: 4 additions & 0 deletions doc/docker/asciidoctor-chunker.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions doc/docker/build
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

docker build --no-cache -t pmodules/asciidoctor:0.0.1 .

547 changes: 547 additions & 0 deletions doc/html/Appendix.html

Large diffs are not rendered by default.

2,369 changes: 2,369 additions & 0 deletions doc/html/Building_Pmodules.html

Large diffs are not rendered by default.

879 changes: 879 additions & 0 deletions doc/html/Building_Pmodules/build-config-files/config_yaml.html

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions doc/html/Building_Pmodules/build-config-files/variants.html

Large diffs are not rendered by default.

71 changes: 71 additions & 0 deletions doc/html/Building_Pmodules/functions/add_configure_args.html

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions doc/html/Building_Pmodules/functions/add_patch.html

Large diffs are not rendered by default.

106 changes: 106 additions & 0 deletions doc/html/Building_Pmodules/functions/add_to_group.html

Large diffs are not rendered by default.

86 changes: 86 additions & 0 deletions doc/html/Building_Pmodules/functions/cmp_versions.html

Large diffs are not rendered by default.

87 changes: 87 additions & 0 deletions doc/html/Building_Pmodules/functions/compile.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/Building_Pmodules/functions/compile_in_sourcetree.html

Large diffs are not rendered by default.

169 changes: 169 additions & 0 deletions doc/html/Building_Pmodules/functions/configure.html

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions doc/html/Building_Pmodules/functions/install.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/Building_Pmodules/functions/install_docfile.html

Large diffs are not rendered by default.

92 changes: 92 additions & 0 deletions doc/html/Building_Pmodules/functions/prep.html

Large diffs are not rendered by default.

72 changes: 72 additions & 0 deletions doc/html/Building_Pmodules/functions/set_download_url.html

Large diffs are not rendered by default.

58 changes: 58 additions & 0 deletions doc/html/Building_Pmodules/functions/set_sha256sum.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/Building_Pmodules/functions/supported_compilers.html

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions doc/html/Building_Pmodules/functions/supported_os.html

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions doc/html/Building_Pmodules/functions/use_autotools.html

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions doc/html/Building_Pmodules/functions/use_cmake.html

Large diffs are not rendered by default.

480 changes: 480 additions & 0 deletions doc/html/Building_Pmodules/modulefile.html

Large diffs are not rendered by default.

145 changes: 145 additions & 0 deletions doc/html/Building_Pmodules/runtime-config-files/module_config.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

272 changes: 272 additions & 0 deletions doc/html/Building_Pmodules/writing-build-scripts.html

Large diffs are not rendered by default.

212 changes: 212 additions & 0 deletions doc/html/Directory-structure.html

Large diffs are not rendered by default.

64 changes: 64 additions & 0 deletions doc/html/Introduction.html

Large diffs are not rendered by default.

108 changes: 108 additions & 0 deletions doc/html/Motivation.html

Large diffs are not rendered by default.

618 changes: 618 additions & 0 deletions doc/html/Nutshell.html

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions doc/html/Overview.html

Large diffs are not rendered by default.

1,225 changes: 1,225 additions & 0 deletions doc/html/The_module_command.html

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions doc/html/The_module_command/module-avail.html

Large diffs are not rendered by default.

97 changes: 97 additions & 0 deletions doc/html/The_module_command/module-clear.html

Large diffs are not rendered by default.

106 changes: 106 additions & 0 deletions doc/html/The_module_command/module-display.html

Large diffs are not rendered by default.

107 changes: 107 additions & 0 deletions doc/html/The_module_command/module-help.html

Large diffs are not rendered by default.

107 changes: 107 additions & 0 deletions doc/html/The_module_command/module-initcmds.html

Large diffs are not rendered by default.

78 changes: 78 additions & 0 deletions doc/html/The_module_command/module-keyword.html

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions doc/html/The_module_command/module-list.html

Large diffs are not rendered by default.

207 changes: 207 additions & 0 deletions doc/html/The_module_command/module-load.html

Large diffs are not rendered by default.

86 changes: 86 additions & 0 deletions doc/html/The_module_command/module-purge.html

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions doc/html/The_module_command/module-refresh.html

Large diffs are not rendered by default.

138 changes: 138 additions & 0 deletions doc/html/The_module_command/module-search.html

Large diffs are not rendered by default.

109 changes: 109 additions & 0 deletions doc/html/The_module_command/module-swap.html

Large diffs are not rendered by default.

197 changes: 197 additions & 0 deletions doc/html/The_module_command/module-use.html

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions doc/html/The_module_command/module-whatis.html

Large diffs are not rendered by default.

119 changes: 119 additions & 0 deletions doc/html/The_module_command/module.html

Large diffs are not rendered by default.

136 changes: 136 additions & 0 deletions doc/html/Writing-a-modulefile.html

Large diffs are not rendered by default.

79 changes: 79 additions & 0 deletions doc/html/build-block-files-and-hierarchy.html

Large diffs are not rendered by default.

272 changes: 272 additions & 0 deletions doc/html/build-blocks-at-a-glance.html

Large diffs are not rendered by default.

93 changes: 93 additions & 0 deletions doc/html/build-script-functions.html

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions doc/html/build-system/Building-a-Pmodule.html

Large diffs are not rendered by default.

212 changes: 212 additions & 0 deletions doc/html/build-system/Directory-structure.html

Large diffs are not rendered by default.

130 changes: 130 additions & 0 deletions doc/html/build-system/Notations.html

Large diffs are not rendered by default.

136 changes: 136 additions & 0 deletions doc/html/build-system/Writing-a-modulefile.html

Large diffs are not rendered by default.

79 changes: 79 additions & 0 deletions doc/html/build-system/build-block-files-and-hierarchy.html

Large diffs are not rendered by default.

272 changes: 272 additions & 0 deletions doc/html/build-system/build-blocks-at-a-glance.html

Large diffs are not rendered by default.

520 changes: 520 additions & 0 deletions doc/html/build-system/build-config-files/config_yaml.html

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions doc/html/build-system/build-config-files/variants.html

Large diffs are not rendered by default.

93 changes: 93 additions & 0 deletions doc/html/build-system/build-script-functions.html

Large diffs are not rendered by default.

67 changes: 67 additions & 0 deletions doc/html/build-system/functions/add_configure_args.html

Large diffs are not rendered by default.

62 changes: 62 additions & 0 deletions doc/html/build-system/functions/add_patch.html

Large diffs are not rendered by default.

106 changes: 106 additions & 0 deletions doc/html/build-system/functions/add_to_group.html

Large diffs are not rendered by default.

89 changes: 89 additions & 0 deletions doc/html/build-system/functions/compile.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/build-system/functions/compile_in_sourcetree.html

Large diffs are not rendered by default.

176 changes: 176 additions & 0 deletions doc/html/build-system/functions/configure.html

Large diffs are not rendered by default.

71 changes: 71 additions & 0 deletions doc/html/build-system/functions/install.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/build-system/functions/install_docfile.html

Large diffs are not rendered by default.

94 changes: 94 additions & 0 deletions doc/html/build-system/functions/prep.html

Large diffs are not rendered by default.

72 changes: 72 additions & 0 deletions doc/html/build-system/functions/set_download_url.html

Large diffs are not rendered by default.

58 changes: 58 additions & 0 deletions doc/html/build-system/functions/set_sha256sum.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/build-system/functions/supported_compilers.html

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions doc/html/build-system/functions/supported_os.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions doc/html/build-system/functions/use_autotools.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions doc/html/build-system/functions/use_cmake.html

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions doc/html/build-system/make_all.html

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions doc/html/build-system/module-names.html

Large diffs are not rendered by default.

480 changes: 480 additions & 0 deletions doc/html/build-system/modulefile.html

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions doc/html/build-system/releases.html

Large diffs are not rendered by default.

145 changes: 145 additions & 0 deletions doc/html/build-system/runtime-config-files/module_config.html

Large diffs are not rendered by default.

157 changes: 157 additions & 0 deletions doc/html/build-system/site-specific-notes.html

Large diffs are not rendered by default.

154 changes: 154 additions & 0 deletions doc/html/build-system/writing-and-maintaining-variant-files.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

272 changes: 272 additions & 0 deletions doc/html/build-system/writing-build-scripts.html

Large diffs are not rendered by default.

2,199 changes: 2,199 additions & 0 deletions doc/html/build.html

Large diffs are not rendered by default.

4,775 changes: 4,775 additions & 0 deletions doc/html/index.html

Large diffs are not rendered by default.

72 changes: 72 additions & 0 deletions doc/html/links.html

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions doc/html/man1/module-avail.html

Large diffs are not rendered by default.

97 changes: 97 additions & 0 deletions doc/html/man1/module-clear.html

Large diffs are not rendered by default.

106 changes: 106 additions & 0 deletions doc/html/man1/module-display.html

Large diffs are not rendered by default.

107 changes: 107 additions & 0 deletions doc/html/man1/module-help.html

Large diffs are not rendered by default.

107 changes: 107 additions & 0 deletions doc/html/man1/module-initcmds.html

Large diffs are not rendered by default.

78 changes: 78 additions & 0 deletions doc/html/man1/module-keyword.html

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions doc/html/man1/module-list.html

Large diffs are not rendered by default.

207 changes: 207 additions & 0 deletions doc/html/man1/module-load.html

Large diffs are not rendered by default.

86 changes: 86 additions & 0 deletions doc/html/man1/module-purge.html

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions doc/html/man1/module-refresh.html

Large diffs are not rendered by default.

138 changes: 138 additions & 0 deletions doc/html/man1/module-search.html

Large diffs are not rendered by default.

109 changes: 109 additions & 0 deletions doc/html/man1/module-swap.html

Large diffs are not rendered by default.

197 changes: 197 additions & 0 deletions doc/html/man1/module-use.html

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions doc/html/man1/module-whatis.html

Large diffs are not rendered by default.

119 changes: 119 additions & 0 deletions doc/html/man1/module.html

Large diffs are not rendered by default.

67 changes: 67 additions & 0 deletions doc/html/man3/add_configure_args.html

Large diffs are not rendered by default.

62 changes: 62 additions & 0 deletions doc/html/man3/add_patch.html

Large diffs are not rendered by default.

106 changes: 106 additions & 0 deletions doc/html/man3/add_to_group.html

Large diffs are not rendered by default.

89 changes: 89 additions & 0 deletions doc/html/man3/compile.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/man3/compile_in_sourcetree.html

Large diffs are not rendered by default.

176 changes: 176 additions & 0 deletions doc/html/man3/configure.html

Large diffs are not rendered by default.

71 changes: 71 additions & 0 deletions doc/html/man3/install.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/man3/install_docfile.html

Large diffs are not rendered by default.

94 changes: 94 additions & 0 deletions doc/html/man3/prep.html

Large diffs are not rendered by default.

72 changes: 72 additions & 0 deletions doc/html/man3/set_download_url.html

Large diffs are not rendered by default.

58 changes: 58 additions & 0 deletions doc/html/man3/set_sha256sum.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions doc/html/man3/supported_compilers.html

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions doc/html/man3/supported_os.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions doc/html/man3/use_autotools.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions doc/html/man3/use_cmake.html

Large diffs are not rendered by default.

92 changes: 92 additions & 0 deletions doc/html/man3/use_flag.html

Large diffs are not rendered by default.

145 changes: 145 additions & 0 deletions doc/html/man4/module_config.html

Large diffs are not rendered by default.

480 changes: 480 additions & 0 deletions doc/html/man4/modulefile.html

Large diffs are not rendered by default.

520 changes: 520 additions & 0 deletions doc/html/man5/config_yaml.html

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions doc/html/man5/variants.html

Large diffs are not rendered by default.

122 changes: 122 additions & 0 deletions doc/html/module-names.html

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions doc/html/overlays.html

Large diffs are not rendered by default.

91 changes: 91 additions & 0 deletions doc/html/pbuild.html

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions doc/html/releases.html

Large diffs are not rendered by default.

157 changes: 157 additions & 0 deletions doc/html/site-specific-notes.html

Large diffs are not rendered by default.

92 changes: 92 additions & 0 deletions doc/html/use_flag.html

Large diffs are not rendered by default.

154 changes: 154 additions & 0 deletions doc/html/writing-and-maintaining-variant-files.html

Large diffs are not rendered by default.

Loading
Loading