-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from asam-ev/add_asam-antora-extensions
Add asam antora extensions
- Loading branch information
Showing
10 changed files
with
196 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "asam-antora-extensions"] | ||
path = asam-antora-extensions | ||
url = https://code.asam.net/common/asam-antora-extensions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule asam-antora-extensions
added at
f42251
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
= Geometry | ||
|
||
include::Introduction.adoc[leveloffset=+1] | ||
include::General.adoc[leveloffset=+1] | ||
include::object-classes.adoc[leveloffset=+1] | ||
include::File_format_support.adoc[leveloffset=+1] | ||
include::metadata.adoc[leveloffset=+1] | ||
include::Performance.adoc[leveloffset=+1] | ||
* xref:geometry/introduction.adoc[leveloffset=+1] | ||
* xref:geometry/general.adoc[leveloffset=+1] | ||
* xref:geometry/object-classes.adoc[leveloffset=+1] | ||
* xref:geometry/file-format-support.adoc[leveloffset=+1] | ||
* xref:geometry/metadata.adoc[leveloffset=+1] | ||
* xref:geometry/performance.adoc[leveloffset=+1] | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
= Material | ||
|
||
include::Introduction.adoc[leveloffset=+1] | ||
include::Fileformat.adoc[leveloffset=+1] | ||
include::metadata.adoc[leveloffset=+1] | ||
include::material-properties.adoc[leveloffset=+1] | ||
include::lookup-tables.adoc[leveloffset=+1] | ||
* xref:material/introduction.adoc[leveloffset=+1] | ||
* xref:material/fileformat.adoc[leveloffset=+1] | ||
* xref:material/metadata.adoc[leveloffset=+1] | ||
* xref:material/material-properties.adoc[leveloffset=+1] | ||
* xref:material/lookup-tables.adoc[leveloffset=+1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
:sectnums!: | ||
|
||
:antora_mapping: true | ||
|
||
[preface] | ||
* xref:../general-docs/foreword.adoc[] | ||
[preface] | ||
* xref:../general-docs/introduction.adoc[] | ||
:sectnums: | ||
* xref:general-docs/scope.adoc[] | ||
* xref:general-docs/normative-references.adoc[] | ||
* xref:general-docs/abbreviations.adoc[] | ||
* xref:general-docs/backward-compatibility.adoc[] | ||
* xref:terms-and-definitions/terms-and-definitions.adoc[] | ||
* xref:use-cases/use-cases.adoc[] | ||
* xref:geometry/geometry-index.adoc[] | ||
** xref:geometry/introduction.adoc[] | ||
** xref:geometry/general.adoc[] | ||
** xref:geometry/object-classes.adoc[] | ||
** xref:geometry/file-format-support.adoc[] | ||
** xref:geometry/metadata.adoc[] | ||
** xref:geometry/performance.adoc[] | ||
* xref:material/material-index.adoc[] | ||
** xref:material/introduction.adoc[] | ||
** xref:material/file-format.adoc[] | ||
** xref:material/metadata.adoc[] | ||
** xref:material/material-properties.adoc[Material properties] | ||
** xref:material/lookup-tables.adoc[] | ||
|
||
|
||
|
||
:sectnums!: | ||
== Annexes | ||
[appendix] | ||
//include::annexes/REPLACE_ME.adoc[leveloffset=+2] | ||
// Add further annexes here as needed and replace the placeholder one above | ||
|
||
[bibliography] | ||
include::bibliography.adoc[leveloffset=+1] | ||
|
||
:sectnums!: | ||
include::loft/list-of-figures.adoc[leveloffset=+1] | ||
|
||
:sectnums!: | ||
include::loft/list-of-tables.adoc[leveloffset=+1] | ||
|
||
:!antora_mapping: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
# This script is used tackle a some specifics of the GitHub action used with a docker container. | ||
# It copies the cached node-modules from the container to the runner workspace and then triggers the build using npm | ||
|
||
cp -r /usr/src/repo/. /github/workspace/. | ||
cd repo | ||
export NODE_OPTIONS="--max-old-space-size=8192" | ||
exec antora --stacktrace --fetch --clean antora-playbook.yml |