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

🆙 Upgrade Jupyter Books in myst init #1223

Merged
merged 31 commits into from
Jul 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e6c93df
refactor: move init to new subdirectory
agoose77 Jun 19, 2024
5857dfd
feat: add upgrade process
agoose77 Jun 19, 2024
855a66a
docs: add docstrings
agoose77 Jun 19, 2024
04bbc84
feat: upgrade ipynb too
agoose77 Jun 19, 2024
a715daa
feat: copy bibliography section
agoose77 Jun 19, 2024
4617e20
fix: add conversion for latex export name
agoose77 Jun 19, 2024
28b6e3f
mising file
agoose77 Jun 19, 2024
634a40a
fix: use of helper
agoose77 Jun 19, 2024
6be110b
fix: handle toc properly
agoose77 Jun 19, 2024
d790b70
chore: run linter
agoose77 Jun 19, 2024
1f22035
fix: restore zod
agoose77 Jun 19, 2024
1da5417
chore: run linter
agoose77 Jun 19, 2024
a0ef52d
fix: renamed attribute
agoose77 Jun 19, 2024
19d3c89
docs: add comments
agoose77 Jun 19, 2024
03c78d1
chore: add changeset
agoose77 Jun 19, 2024
19ee6d0
feat: improve UX, ask
agoose77 Jul 5, 2024
b885ba5
fix: support multi-line definitions
agoose77 Jul 8, 2024
a460e76
test: ensure glossary upgrade behaves
agoose77 Jul 8, 2024
f34cd73
chore: run prettier
agoose77 Jul 8, 2024
1ecad34
feat: add support for renaming directives
agoose77 Jul 8, 2024
ac937b1
feat: add note about upgrade
agoose77 Jul 8, 2024
8e0d3e5
chore: run linter
agoose77 Jul 8, 2024
b151e49
fix: support legacy-style analytics declarations
agoose77 Jul 8, 2024
ad6c3eb
fix: support whitespace in admonition declaration
agoose77 Jul 8, 2024
c9a6432
test: add spacing test
agoose77 Jul 8, 2024
b5b2974
fix: nullish config support, atomic upgrades
agoose77 Jul 17, 2024
fc1ed37
feat: use debug
agoose77 Jul 17, 2024
8931f24
chore: run linter
agoose77 Jul 17, 2024
d6ea812
fix: cleanup atomics, debug
agoose77 Jul 17, 2024
ebd237d
chore: run linter
agoose77 Jul 17, 2024
274e3c1
fix: add try-catch
agoose77 Jul 17, 2024
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
Prev Previous commit
Next Next commit
test: add spacing test
  • Loading branch information
agoose77 committed Jul 8, 2024
commit c9a6432a08dfc57af9aba24122f50eb9d75523c8
26 changes: 26 additions & 0 deletions packages/myst-cli/src/init/jupyter-book/syntax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,31 @@ cases:
:::{note}
I am a note

- foo
:::
- title: Admonition with space between backticks and name
source: |
``` {noTE}
I am a note

- foo
```
result: |
```{note}
I am a note

- foo
```
- title: Admonition with space between colon-fence and name
source: |
::: {noTE}
I am a note

- foo
:::
result: |
:::{note}
I am a note

- foo
:::
Loading