-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build documentation with mkdocs (#321)
- Loading branch information
Showing
12 changed files
with
99 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
*.pyc | ||
setup.py | ||
CMakeLists.txt.user | ||
|
||
site |
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,37 @@ | ||
#!/bin/bash | ||
|
||
# Destination directory (docs folder) | ||
dest_dir="docs/" | ||
|
||
# Ensure the destination directory exists | ||
lanelet2_core_dir="lanelet2_core" | ||
lanelet2_examples_dir="lanelet2_examples" | ||
lanelet2_io_dir="lanelet2_io" | ||
lanelet2_maps_dir="lanelet2_maps" | ||
lanelet2_matching_dir="lanelet2_matching" | ||
lanelet2_projection_dir="lanelet2_projection" | ||
lanelet2_python_dir="lanelet2_python" | ||
lanelet2_routing_dir="lanelet2_routing" | ||
lanelet2_traffic_rules_dir="lanelet2_traffic_rules" | ||
lanelet2_validation_dir="lanelet2_validation" | ||
|
||
cp "README.md" "$dest_dir/index.md" | ||
|
||
cp "$lanelet2_core_dir/README.md" "$dest_dir/lanelet2_core.md" | ||
cp -r "$lanelet2_core_dir/doc" "$dest_dir/lanelet2_core" | ||
|
||
cp "$lanelet2_examples_dir/README.md" "$dest_dir/lanelet2_examples.md" | ||
cp "$lanelet2_io_dir/README.md" "$dest_dir/lanelet2_io.md" | ||
cp "$lanelet2_maps_dir/README.md" "$dest_dir/lanelet2_maps.md" | ||
cp "$lanelet2_matching_dir/README.md" "$dest_dir/lanelet2_matching.md" | ||
cp "$lanelet2_projection_dir/README.md" "$dest_dir/lanelet2_projection.md" | ||
cp -r "$lanelet2_projection_dir/doc" "$dest_dir/lanelet2_projection" | ||
cp "$lanelet2_python_dir/README.md" "$dest_dir/lanelet2_python.md" | ||
|
||
cp "$lanelet2_routing_dir/README.md" "$dest_dir/lanelet2_routing.md" | ||
cp -r "$lanelet2_routing_dir/doc" "$dest_dir/lanelet2_routing" | ||
|
||
cp "$lanelet2_traffic_rules_dir/README.md" "$dest_dir/lanelet2_traffic_rules.md" | ||
cp "$lanelet2_validation_dir/README.md" "$dest_dir/lanelet2_validation.md" | ||
|
||
echo "Documentation files copied to the docs folder." |
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,2 @@ | ||
mkdocs == 1.2.3 | ||
jinja2==3.0.3 |
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
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
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,29 @@ | ||
site_name: Lanelet2 | ||
repo_url: https://github.com/fzi-forschungszentrum-informatik/Lanelet2 | ||
docs_dir: docs | ||
edit_uri: 'edit/master/docs/' | ||
theme: readthedocs | ||
|
||
nav: | ||
- Home: 'index.md' | ||
- lanelet2_core: 'lanelet2_core.md' | ||
- lanelet2_examples: 'lanelet2_examples.md' | ||
- lanelet2_io: 'lanelet2_io.md' | ||
- lanelet2_maps: 'lanelet2_maps.md' | ||
- lanelet2_matching: 'lanelet2_matching.md' | ||
- lanelet2_projection: 'lanelet2_projection.md' | ||
- lanelet2_python: 'lanelet2_python.md' | ||
- lanelet2_routing: 'lanelet2_routing.md' | ||
- lanelet2_traffic_rules: 'lanelet2_traffic_rules.md' | ||
- lanelet2_validation: 'lanelet2_validation.md' | ||
|
||
- Detailed Documentation: | ||
- 'Architecture': 'lanelet2_core/Architecture.md' | ||
- 'GeometryPrimer': 'lanelet2_core/GeometryPrimer.md' | ||
- 'Lanelet1Compability': 'lanelet2_core/Lanelet1Compability.md' | ||
- 'LaneletAndAreaTagging': 'lanelet2_core/LaneletAndAreaTagging.md' | ||
- 'LaneletPrimitives': 'lanelet2_core/LaneletPrimitives.md' | ||
- 'LinestringTagging': 'lanelet2_core/LinestringTagging.md' | ||
- 'RegulatoryElementTagging': 'lanelet2_core/RegulatoryElementTagging.md' | ||
- 'Map_Projections_Coordinate_Systems': 'lanelet2_projection/Map_Projections_Coordinate_Systems.md' | ||
|
4311fa7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LCOV of commit [
4311fa7
] during Lanelet2 CI #157File coverage rate:
4311fa7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LCOV of commit [
4311fa7
] during Lanelet2 CI #160File coverage rate: