@@ -72,19 +72,17 @@ You may have additional HTML and Markdown content in a <tooltip content="the fil
72
72
73
73
{{ icon_example }} A siteNav code using a `<navigation>` tag.
74
74
75
- <box>
76
-
77
- <code>
78
- # Site Map<br>
79
- <strong><<span></span>navigation></strong><br>
80
- * [:house: Home]({{ showBaseUrlText }}/index.html)<br>
81
- * Docs<br>
82
- * [User Guide]({{ showBaseUrlText }}/ug.html)<br>
83
- * [Dev Guide]({{ showBaseUrlText }}/dg.html)<br>
84
- * [Search]({{ showBaseUrlText }}/search.html)<br>
85
- <strong><<span></span>/navigation></strong><br>
86
- </code>
87
- </box>
75
+ ```{.no-line-numbers}
76
+ # Site Map
77
+ <navigation>
78
+ * [:house: Home]({{ baseUr }}/index.html)
79
+ * Docs
80
+ * [User Guide]({{ baseUrl }}/ug.html)
81
+ * [Dev Guide]({{ baseUrl }}/dg.html)
82
+ * [Search]({{ baseUrl }}/search.html)
83
+ </navigation>
84
+ ```
85
+
88
86
</div>
89
87
90
88
More than one siteNav file can be in `_markbind/navigation/` directory but a page may not have more than one siteNav.
@@ -98,17 +96,16 @@ If you wish to use a Layout but exclude its navigation file, specify `siteNav: n
98
96
99
97
<span id="short" class="d-none">
100
98
101
- <code>
102
- # Site Map<br>
103
- <strong><<span></span>navigation></strong><br>
104
- * [:house: Home]({{ showBaseUrlText }}/index.html)<br>
105
- * Docs :expanded:<br>
106
- * [User Guide]({{ showBaseUrlText }}/ug.html)<br>
107
- * [Dev Guide]({{ showBaseUrlText }}/dg.html)<br>
108
- * [Search]({{ showBaseUrlText }}/search.html)<br>
109
- <strong><<span></span>/navigation></strong><br>
110
- </code>
111
- </box>
99
+ ```{.no-line-numbers}
100
+ # Site Map
101
+ <navigation>
102
+ * [:house: Home]({{ baseUrl }}/index.html)
103
+ * Docs :expanded:
104
+ * [User Guide]({{ baseUrl }}/ug.html)
105
+ * [Dev Guide]({{ baseUrl }}/dg.html)
106
+ * [Search]({{ baseUrl }}/search.html)
107
+ </navigation>
108
+ ```
112
109
113
110
```html
114
111
<frontmatter>
0 commit comments