-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pydantic all the things - release 0.8.0 (#157)
* pydantic all the things (#149) This turned into a GIANT PR, everything is working, but there seems to be an endless number of nice to haves. This needs to just be merged and let the nice to haves get their own PR. It is currently working, but there may be some rough edges on the pre-release. * Bump version: 0.7.4 → 0.8.0.dev0 * fix: cache issue set the date after dateparser runs * Bump version: 0.8.0.dev0 → 0.8.0.dev1 * clean up load * fix default plugin order * Bump version: 0.8.0.dev1 → 0.8.0.dev2 * create sitemap for feeds * Bump version: 0.8.0.dev2 → 0.8.0.dev3 * remove double slashes in slugs * expose the Posts model * Bump version: 0.8.0.dev3 → 0.8.0.dev4 * expose post to the template * Bump version: 0.8.0.dev4 → 0.8.0.dev5 * escape html in descriptions * Bump version: 0.8.0.dev5 → 0.8.0.dev6 * link manifest in templates not here, it's too slow * docs * fix CHANGELOG * fix unused import * update actions/checkout * Bump version: 0.8.0.dev6 → 0.8.0.dev7 --------- Co-authored-by: autobump <[email protected]>
- Loading branch information
1 parent
af5d3cf
commit 8061f97
Showing
75 changed files
with
6,257 additions
and
2,224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
--- | ||
title: Admonitions | ||
description: This is what the default admonition styles look like and how to create them. | ||
--- | ||
|
||
???+ note open by default | ||
you can open a details tab with '+' | ||
|
||
<!-- prettier-ignore --> | ||
??? note closed by default | ||
you can open a details tab with '+' | ||
|
||
## all of the admonitions | ||
|
||
<!-- prettier-ignore --> | ||
!!! note | ||
a note | ||
|
||
<!-- prettier-ignore --> | ||
!!! abstract | ||
an abstract | ||
|
||
<!-- prettier-ignore --> | ||
!!! info | ||
|
||
admonitions | ||
|
||
<!-- prettier-ignore --> | ||
!!! tip | ||
|
||
You should think about using admonitions | ||
|
||
<!-- prettier-ignore --> | ||
!!! success | ||
|
||
Run Successful! | ||
|
||
<!-- prettier-ignore --> | ||
!!! question | ||
|
||
What do you think of this? | ||
|
||
<!-- prettier-ignore --> | ||
!!! source | ||
Add some source code. | ||
```python | ||
print('hello world') | ||
|
||
```` | ||
<!-- prettier-ignore --> | ||
!!! warning | ||
a warning | ||
<!-- prettier-ignore --> | ||
!!! failure | ||
a failure | ||
<!-- prettier-ignore --> | ||
!!! danger | ||
some danger | ||
<!-- prettier-ignore --> | ||
!!! bug | ||
a bug | ||
<!-- prettier-ignore --> | ||
!!! example | ||
an example | ||
``` python | ||
print('hello world') | ||
``` | ||
<!-- prettier-ignore --> | ||
!!! quote | ||
a quote | ||
> include a nice quote | ||
<!-- Background #282a36 --> | ||
<!-- Current Line #44475a --> | ||
<!-- Foreground #f8f8f2 --> | ||
<!-- Comment #6272a4 --> | ||
<!-- Cyan #8be9fd --> | ||
<!-- Green #50fa7b --> | ||
<!-- Orange #ffb86c --> | ||
<!-- Pink #ff79c6 --> | ||
<!-- Purple #bd93f9 --> | ||
<!-- Red #ff5555 --> | ||
<!-- Yellow #f1fa8c --> | ||
<!-- note: $drac-dark-yellow, --> | ||
<!-- abstract: $drac-cyan, --> | ||
<!-- info: $drac-light-blue, --> | ||
<!-- tip: $drac-teal, --> | ||
<!-- success: $drac-green, --> | ||
<!-- question: $drac-light-green, --> | ||
<!-- warning: $drac-orange, --> | ||
<!-- failure: $drac-dark-red, --> | ||
<!-- danger: $drac-red, --> | ||
<!-- bug: $drac-dark-pink, --> | ||
<!-- example: $drac-purple, --> | ||
<!-- quote: $drac-grey --> | ||
```` |
Oops, something went wrong.