Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
ci:
autoupdate_schedule: quarterly
autofix_prs: false

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
# Validate format
- id: check-yaml
- id: check-toml
- id: check-json
# Check for common mistakes
- id: check-added-large-files
- id: check-case-conflict
# - id: check-illegal-windows-names # TODO: Enable in next release
- id: check-merge-conflict
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: check-symlinks
- id: check-vcs-permalinks
- id: destroyed-symlinks
- id: detect-private-key
- id: end-of-file-fixer
- id: mixed-line-ending
- id: no-commit-to-branch # protects `main` by default
- id: trailing-whitespace

- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
11 changes: 11 additions & 0 deletions agu2025.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: "AGU 2025"
---

Our workshop at AGU is titled **Open Source Geospatial Workflows in the Cloud: Learn
about Tools and Techniques for Data Access, Analysis, Visualization, Storytelling, and
Sharing in the Python and Jupyter ecosystem**.

[Visit our workshop website](https://agu2025.workshops.geojupyter.org/) for more details!

Please also [view more details about our participation in AGU 2025](https://events.geojupyter.org/conferences/2025-agu/).
8 changes: 4 additions & 4 deletions myst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ project:
exclude:
- "_*"
- "README.md"
# toc:
# - file: "index.md"
# # TODO: Use URL entries instead, once supported
# # https://github.com/jupyter-book/mystmd/issues/1445
toc:
- file: "index.md"
- file: "agu2025.md"
- file: "csdms2025.md"
Copy link
Member Author

@mfisher87 mfisher87 Oct 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a TOC to keep these in order. I want them to be newest first, so sequential numbering in the filenames isn't a good solution. It has to be manual 😭

I'd love for MyST to enable sorting TOC elements based on attributes in the frontmatter.


site:
template: "book-theme"
Expand Down