-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert all of docs to markdown #392
Comments
using this script: Define the path to the docs directoryDOCS_DIR="./docs" Check if pandoc is installedif ! command -v pandoc &> /dev/null Convert all .rst files in the docs directory to .mdfind "$DOCS_DIR" -type f -name "*.rst" | while read file; do
done echo "Conversion complete." |
possibly images need a different handling |
did markdown import for images |
Follow on from #359
The text was updated successfully, but these errors were encountered: