Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pygame-web/pygame-web.github.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: pygame-web/pygame-web.github.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: sphinx-test
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 31 files changed
  • 1 contributor

Commits on Apr 12, 2025

  1. Configuration menu
    Copy the full SHA
    ed35c3e View commit details
    Browse the repository at this point in the history
  2. gitignore build output

    wade-cheng committed Apr 12, 2025
    Configuration menu
    Copy the full SHA
    edbb4a1 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2025

  1. Configuration menu
    Copy the full SHA
    7fd4ffa View commit details
    Browse the repository at this point in the history
  2. programmatically add h1 titles pages missing them

    - sphinx requires titles to build docs.
    - the code follows:
    ```
    import os
    
    for root, dirs, files in os.walk("source", topdown=False):
        if "README.md" not in files:
            continue
    
        path = os.path.join(root, "README.md")
        print(path)
        with open(path) as f:
            content = f.read()
    
        if "# " not in content:
            with open(path, "w") as f:
                f.write(f"# {root.split('/')[-1]}\n" + content)
    ```
    wade-cheng committed Apr 21, 2025
    Configuration menu
    Copy the full SHA
    0bb4a45 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    71d88ef View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5ce3ce2 View commit details
    Browse the repository at this point in the history
  5. bugfix missing h1s

    wade-cheng committed Apr 21, 2025
    Configuration menu
    Copy the full SHA
    b6822b7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bb5cff5 View commit details
    Browse the repository at this point in the history
  7. document build steps

    wade-cheng committed Apr 21, 2025
    Configuration menu
    Copy the full SHA
    93d0ec4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2e6d92d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    7c1694b View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2025

  1. Configuration menu
    Copy the full SHA
    b07dc42 View commit details
    Browse the repository at this point in the history
Loading