:::tip Title Goes Here
content
:::
is incorrect and does not render properly through docusaurus
:::tip[Title Goes Here]
content
:::
https://docusaurus.io/docs/markdown-features/admonitions
One liner to fix current documents.
find . -name "*.md" -exec sh -c "sed 's/:::\(tip\|warning\|caution\|info\) \(.*\)$/:::\1[\2]/' {} -i " \;
is incorrect and does not render properly through docusaurus
https://docusaurus.io/docs/markdown-features/admonitions
One liner to fix current documents.
find . -name "*.md" -exec sh -c "sed 's/:::\(tip\|warning\|caution\|info\) \(.*\)$/:::\1[\2]/' {} -i " \;