-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotes.txt
29 lines (18 loc) · 942 Bytes
/
notes.txt
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
Migration notes
Get the source as markdown files from gitbook from the repo
https://github.com/StackVista/stackstate-docs, use the suse-observability branch only
In bin/
fix-admon.py is available to fix admonitions.
img_path.sh fixes image paths in the asciidoc files
A nav.adoc file needs manual construction to make it look like the navigation
provided in the gitbook/the current site.
docs/next/modules/en/pages/k8s-quick-start-guide.adoc
Remove :doctype: book and fix section headings
Find instances of {% code %} macros from gitbook and adjust
find docs -name "*.adoc" -exec grep -Hn "{% code" {} \; -ls
Replace any link: macros with xref: macros
find docs -name "*.adoc" -exec grep -Hn "link:" {} \; -ls
Replace any hint macros with admonition macros
find docs -name "*.adoc" -exec grep -Hn "{% hint" {} \; -ls
Any passthrough blocks need often contained malformations
find docs -name "*.adoc" -exec grep -Hn "+++" {} \; -ls