Skip to content
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

Open
wants to merge 13 commits into
base: master
Choose a base branch
from

Commits on Jul 25, 2022

  1. 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.
    nattheriddle1 committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    515f25a View commit details
    Browse the repository at this point in the history
  2. Convert HTML links to Markdown links

    Markdown syntax is more concise and should be preferred over inline HTML.
    nattheriddle1 committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    fc9381b View commit details
    Browse the repository at this point in the history
  3. Fixed Markdown headings

    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.
    nattheriddle1 committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    d55e107 View commit details
    Browse the repository at this point in the history
  4. Convert HTML code to Markdown code

    Markdown syntax is more concise and should be preferred over inline HTML.
    nattheriddle1 committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    cb0dce5 View commit details
    Browse the repository at this point in the history
  5. Convert HTML strong to Markdown strong

    Markdown syntax is more concise and should be preferred over inline HTML.
    nattheriddle1 committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    000400d View commit details
    Browse the repository at this point in the history
  6. Convert HTML code blocks to Markdown code blocks

    Markdown syntax is more concise and should be preferred over inline HTML.
    nattheriddle1 committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    1b2cf68 View commit details
    Browse the repository at this point in the history
  7. Removed excess newlines

    Markdown ignores more than 2 newlines in a row.
    nattheriddle1 committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    288e054 View commit details
    Browse the repository at this point in the history
  8. Standardized ellipses

    Standardized number of dots in ellipses and surrounding spacing.
    nattheriddle1 committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    4d89d3c View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Made Other Languages lines consistent

    Removed spaces, added colons, and capitalized where necessary.
    nattheriddle1 committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    85b347d View commit details
    Browse the repository at this point in the history
  2. Added lines after Markdown headings

    Markdown headings should be followed by 1 blank line, especially before indented code blocks.
    nattheriddle1 committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    80e483b View commit details
    Browse the repository at this point in the history
  3. Made spacing after bullets consistent

    Markdown list delimiters need only be followed by one space.
    nattheriddle1 committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    5b1a1b2 View commit details
    Browse the repository at this point in the history
  4. 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.
    nattheriddle1 committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    9e07221 View commit details
    Browse the repository at this point in the history
  5. Cleaned up lists

    Made ordered list delimiters sequential. Converted unordered list delimiters to asterisks. Made quotation list citation scheme consistent across languages.
    nattheriddle1 committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    78a34d8 View commit details
    Browse the repository at this point in the history