Skip to content

Conversation

@mfisher87
Copy link
Member

@mfisher87 mfisher87 commented Nov 24, 2025

This PR adds content for module 5 exercises C-E.

I was finding myself repeating a lot of stuff, so I extracted a couple of plugins to reduce repetition, and documented their usage in the style guide and a new "helpers" page.

I also added commit checkpoints throughout and a dropdown callout for folks who might be joining the workshop late.


🔍 Preview: https://geojupyter-workshop-open-source-geospatial--48.org.readthedocs.build/
Note: This Pull Request preview is provided by ReadTheDocs. Our production website, however, is currently deployed with GitHub Pages.

@mfisher87 mfisher87 changed the title Module 5 exercises C, D, .... maybe E Module 5 exercises C & D Nov 25, 2025
@mfisher87 mfisher87 marked this pull request as ready for review November 25, 2025 04:12
@mfisher87 mfisher87 requested a review from a team November 25, 2025 04:12
@mfisher87 mfisher87 mentioned this pull request Nov 25, 2025
@mfisher87 mfisher87 changed the title Module 5 exercises C & D Module 5 exercises C, D, & E Nov 25, 2025
Copy link

@rowanc1 rowanc1 left a comment

Choose a reason for hiding this comment

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

A few comments on the plugins!

Super cool stuff!

name: "youShouldNotice",
doc: "Renders a consistent callout when the learner should notice something.",
body: {
type: String
Copy link

Choose a reason for hiding this comment

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

Suggested change
type: String
type: 'myst'

Copy link
Member Author

@mfisher87 mfisher87 Nov 27, 2025

Choose a reason for hiding this comment

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

Dope, that's really useful to know. Thank you Rowan! ❤️

8ce6f46

@mfisher87 mfisher87 force-pushed the module-5-continued branch 2 times, most recently from f8fc8b5 to f5b3942 Compare November 27, 2025 15:49
mfisher87 and others added 2 commits November 27, 2025 08:52
Co-authored-by: Rowan Cockett <913249+rowanc1@users.noreply.github.com>
…to parse

Co-authored-by: Rowan Cockett <913249+rowanc1@users.noreply.github.com>
@mfisher87
Copy link
Member Author

Thanks @rowanc1 for the review 🙇

Comment on lines 31 to 55
const youShouldNoticeDirective = {
name: "youShouldNotice",
doc: "Renders a consistent callout when the learner should notice something.",
body: {
type: 'myst',
},
run(data) {
return [{
type: "admonition",
kind: "important",
icon: false,
class: "simple",
children: [
{
type: "admonitionTitle",
children: [{
type: "text",
value: "👀 You should notice...",
}],
},
...data.body,
],
}];
},
};
Copy link

Choose a reason for hiding this comment

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

Nice - IMO this is about as simple as it can be..!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants