mkdocs.yml 2.95 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
site_name: CityDoctor2
site_url: https://transfer.hft-stuttgart.de/pages/citydoctor/citydoctorhomepage/
repo_url: https://transfer.hft-stuttgart.de/gitlab/citydoctor/citydoctor2
repo_name: CityDoctor2
docs_dir: '../../docs/en'
site_dir: '../../public/en'
nav: 
    - CityDoctor2: index.md
    - Installation: requiredSoftware.md
    - First Start: firstRun.md
    - User Interface: userInterface.md
    - Validation Plan: validationPlan.md
    - Requirements:
      - Fundamentals: basic.md
      - Overview: requirements.md
      - Schema Requirements: schemaRequirements.md
      - Geometric Requirements: geometric.md
      - Semantic Requirements: semantic.md
      - Details:
        - R_TOO_FEW_POINTS: R_GE_R_TOO_FEW_POINTS.md
        - R_CONSECUTIVE_POINTS_SAME: R_GE_R_CONSECUTIVE_POINTS_SAME.md
        - R_RING_NOT_CLOSED: R_GE_R_NOT_CLOSED.md
        - R_RING_SELF_INTERSECTION: R_GE_R_SELF_INTERSECTION.md
        - R_COLLAPSED_TO_LINE: R_GE_R_COLLAPSED_TO_LINE.md
        - P_INTERSECTING_RINGS: R_GE_P_INTERSECTING_RINGS.md
        - P_NON_PLANAR: R_GE_P_NON_PLANAR.md
        - P_INTERIOR_DISCONNECTED: R_GE_P_INTERIOR_DISCONNECTED.md
        - P_HOLE_OUTSIDE: R_GE_P_HOLE_OUTSIDE.md
        - P_INNER_RINGS_NESTED: R_GE_P_INNER_RINGS_NESTED.md
        - P_ORIENTATION_RINGS_SAME: R_GE_P_ORIENTATION_RINGS_SAME.md
        - MULTI_SURFACE: R_GE_MS.md
        - S_TOO_FEW_POLYGONS: R_GE_S_TOO_FEW_POLYGONS.md
        - S_NOT_CLOSED: R_GE_S_NOT_CLOSED.md
        - S_NON_MANIFOLD_VERTEX: R_GE_S_NON_MANIFOLD_VERTEX.md
        - S_NON_MANIFOLD_EDGE: R_GE_S_NON_MANIFOLD_EDGE.md
        - S_MULTIPLE_CONNECTED_COMPONENTS: R_GE_S_MULTIPLE_CONNECTED_COMPONENTS.md
        - S_SELF_INTERSECTION: R_GE_S_SELF_INTERSECTION.md
        - S_POLYGON_WRONG_ORIENTATION: R_GE_S_POLYGON_WRONG_ORIENTATION.md
        - S_ALL_POLYGONS_WRONG_ORIENTATION: R_GE_S_ALL_POLYGONS_WRONG_ORIENTATION.md
        - SOLID: R_GE_SO.md
# Language Selection
extra:
  alternate:
      # Switch to German
    - name: Deutsch
Matthias Betz's avatar
Matthias Betz committed
46
      link: https://transfer.hft-stuttgart.de/pages/citydoctor/citydoctorhomepage/de/
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
      lang: de
      # Switch to English
    - name: English
      link: 
      lang: en
theme:
    name: material
    language: en
    favicon: img/citydoctor_logo.png
    features:
      - content.code.annotate
    palette:
      - media: "(prefers-color-scheme: light)"
        primary: red
        scheme: default
        toggle:
          icon: material/brightness-7 
          name: Use Darkmode
      - media: "(prefers-color-scheme: dark)"
        scheme: slate
        toggle:
          icon: material/brightness-4
          name: Use Lightmode
markdown_extensions:
    - admonition
    - toc:
        permalink: "#"
    - pymdownx.highlight:
        anchor_linenums: true
    - pymdownx.inlinehilite
    - pymdownx.snippets
plugins:
    - search:
        lang: en
    - mermaid2
extra_css:
    - https://unpkg.com/mermaid/dist/mermaid.css             
extra_javascript:
    - https://unpkg.com/mermaid/dist/mermaid.min.js