-
Notifications
You must be signed in to change notification settings - Fork 251
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
Tons of Markdown fixes, improvements, and cleanup #151
base: master
Are you sure you want to change the base?
Commits on Jul 25, 2022
-
Replace links before headings to headings with IDs
Before, empty anchor tags with name attributes were placed before headings, so other anchor tags could target and automatically scroll to the heading when clicked. However, this functionality can and should be implemented by giving the headings ID attributes instead. This is more concise, easier to maintain, and a more proper use of HTML5.
Configuration menu - View commit details
-
Copy full SHA for 515f25a - Browse repository at this point
Copy the full SHA 515f25aView commit details -
Convert HTML links to Markdown links
Markdown syntax is more concise and should be preferred over inline HTML.
Configuration menu - View commit details
-
Copy full SHA for fc9381b - Browse repository at this point
Copy the full SHA fc9381bView commit details -
Many of the headings on the website were broken, as many of the headings lacked a space after the hashtags, which many Markdown renderers require.
Configuration menu - View commit details
-
Copy full SHA for d55e107 - Browse repository at this point
Copy the full SHA d55e107View commit details -
Convert HTML code to Markdown code
Markdown syntax is more concise and should be preferred over inline HTML.
Configuration menu - View commit details
-
Copy full SHA for cb0dce5 - Browse repository at this point
Copy the full SHA cb0dce5View commit details -
Convert HTML strong to Markdown strong
Markdown syntax is more concise and should be preferred over inline HTML.
Configuration menu - View commit details
-
Copy full SHA for 000400d - Browse repository at this point
Copy the full SHA 000400dView commit details -
Convert HTML code blocks to Markdown code blocks
Markdown syntax is more concise and should be preferred over inline HTML.
Configuration menu - View commit details
-
Copy full SHA for 1b2cf68 - Browse repository at this point
Copy the full SHA 1b2cf68View commit details -
Markdown ignores more than 2 newlines in a row.
Configuration menu - View commit details
-
Copy full SHA for 288e054 - Browse repository at this point
Copy the full SHA 288e054View commit details -
Standardized number of dots in ellipses and surrounding spacing.
Configuration menu - View commit details
-
Copy full SHA for 4d89d3c - Browse repository at this point
Copy the full SHA 4d89d3cView commit details
Commits on Aug 3, 2022
-
Made Other Languages lines consistent
Removed spaces, added colons, and capitalized where necessary.
Configuration menu - View commit details
-
Copy full SHA for 85b347d - Browse repository at this point
Copy the full SHA 85b347dView commit details -
Added lines after Markdown headings
Markdown headings should be followed by 1 blank line, especially before indented code blocks.
Configuration menu - View commit details
-
Copy full SHA for 80e483b - Browse repository at this point
Copy the full SHA 80e483bView commit details -
Made spacing after bullets consistent
Markdown list delimiters need only be followed by one space.
Configuration menu - View commit details
-
Copy full SHA for 5b1a1b2 - Browse repository at this point
Copy the full SHA 5b1a1b2View commit details -
Made triple delimiters consistent
Replaced repeated hyphens and asterisks with triple hyphens. Replaced triple hyphens after a heading with more traditional Markdown headings. Replaced triple tildes for code blocks with triple backticks.
Configuration menu - View commit details
-
Copy full SHA for 9e07221 - Browse repository at this point
Copy the full SHA 9e07221View commit details -
Made ordered list delimiters sequential. Converted unordered list delimiters to asterisks. Made quotation list citation scheme consistent across languages.
Configuration menu - View commit details
-
Copy full SHA for 78a34d8 - Browse repository at this point
Copy the full SHA 78a34d8View commit details