@@ -69,10 +69,10 @@ The basic syntax is:
69
69
Ordering is enabled by ` mkdocs-literate-nav `
70
70
(learn more [ here] ( https://oprypin.github.io/mkdocs-literate-nav/reference.html ) ).
71
71
72
- The basic setup is having a a file in ` {repo}/docs/{user }/{persona }/_SUMMARY.md ` .
72
+ The basic setup is having a file in ` {repo}/docs/{persona }/{doc_type }/_SUMMARY.md ` .
73
73
In this file you should use the following syntax:
74
74
75
- ``` markdown title="pulp_rpm /docs/user/guides/_SUMMARY.md"
75
+ ``` markdown title="pulp_plugin /docs/user/guides/_SUMMARY.md"
76
76
# Basic
77
77
* [First list item](z-page.md)
78
78
* [Second list item](m-page.md)
@@ -87,7 +87,7 @@ In this file you should use the following syntax:
87
87
# Recursive Globs
88
88
* [I want this first](some-page.md)
89
89
* *.md
90
- * [This last and recurse this dir](other/)
90
+ * [This last and recurse this dir](other/)
91
91
```
92
92
93
93
### Codeblocks
@@ -111,6 +111,7 @@ Markdown syntax:
111
111
serializer = mymodelserializer(data=data)
112
112
serializer.is_valid(raise_exception=true)
113
113
instance = serializer.create(serializer.validated_data)
114
+ print(instance)
114
115
```
115
116
````
116
117
@@ -125,11 +126,11 @@ The codeblock can also have a title, which is useful if its a file:
125
126
Markdown syntax:
126
127
127
128
````
128
- ```bash title="script .sh"
129
+ ```bash title="sample-title-here .sh"
129
130
pulp file repository update --name myrepo --retained-versions 1
130
131
```
131
132
````
132
-
133
+
133
134
### Admonitions
134
135
135
136
[ See mkdocs-material] ( https://squidfunk.github.io/mkdocs-material/reference/admonitions/#supported-types )
0 commit comments