Remove dashes from documentation and component text#702
Open
Irozuku wants to merge 19 commits into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removed all dashes used as prose punctuation across the documentation and the text that feeds it. This covers em dashes and ordinary compound word hyphens (for example "built-in" became "built in", "machine-learning" became "machine learning") in the docs site content, the homepage, and the component descriptions that render into the generated component reference and the app UI. Established technical terms and acronyms (TF-IDF, n-gram, k-Nearest Neighbors, chi-squared, and similar), code identifiers, CLI flags, route slugs, file paths, and German compound nouns were intentionally left untouched. Both English and Spanish locales were updated.
Type of Change
Check all that apply like this [x]:
Changes (by file)
docs/docs/**/*.md(x)anddocs/i18n/es/**/*.md: rewrote prose to drop em dashes and compound hyphens across the discover, learn (tutorials and guides), deep dive, and build sections, in English and Spanish.docs/src/pages/index.js,docs/i18n/es/docusaurus-plugin-content-pages/index.js: removed dashes from rendered homepage strings.docs/src/css/custom.css,docs/src/components/HomeIcons.js,docs/src/theme/DocSidebar/Desktop/index.js: cleaned dash usage in theme text and comments.docs/scripts/generate_components.py: use a plain ASCII hyphen as the empty table cell placeholder so regenerated component pages stay dash free.DashAI/back/converters/**,DashAI/back/models/**,DashAI/back/metrics/**,DashAI/back/exploration/**,DashAI/back/explainability/**,DashAI/back/dataset_sources/**,DashAI/back/dataloaders/**,DashAI/back/job/**: removed dashes from componentDISPLAY_NAME,DESCRIPTION, and schema fielddescriptiontext plus class and method docstrings. These strings render in the docs and the app UI.DashAI/back/api/**,DashAI/back/types/**,DashAI/back/services/**,DashAI/back/dependencies/**,DashAI/back/pipeline/**: removed dashes from internal code comments and docstrings only.