mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-28 18:06:20 +02:00
16 lines
505 B
Bash
Executable file
16 lines
505 B
Bash
Executable file
#!/bin/bash
|
||
|
||
# Clean the API docs
|
||
docusaurus clean-api-docs all
|
||
|
||
# Generate the API docs
|
||
docusaurus gen-api-docs all
|
||
|
||
# Create README.md
|
||
mv docs/api/neko-api.info.mdx docs/api/README.mdx
|
||
|
||
# Replace all occurences of docs/api/neko-api with docs/v3/api
|
||
find docs/api -type f -exec sed -i 's/docs\/api\/neko-api/docs\/v3\/api/g' {} \;
|
||
|
||
# This regex removes (multiline) any span tag that contains "theme-doc-version-badge":
|
||
sed -i '/<span/{:a;N;/<\/span>/!ba;/theme-doc-version-badge/d}' docs/api/README.mdx
|