MDit 0.0.0.dev4__tar.gz → 0.0.0.dev7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. mdit-0.0.0.dev7/MANIFEST.in +1 -0
  2. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/PKG-INFO +8 -8
  3. mdit-0.0.0.dev7/README.md +3 -0
  4. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/pyproject.toml +8 -8
  5. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/MDit.egg-info/PKG-INFO +8 -8
  6. mdit-0.0.0.dev7/src/MDit.egg-info/SOURCES.txt +48 -0
  7. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/MDit.egg-info/requires.txt +7 -7
  8. mdit-0.0.0.dev7/src/mdit/data/schema/document.yaml +19 -0
  9. mdit-0.0.0.dev7/src/mdit/data/schema/element/badge.yaml +83 -0
  10. mdit-0.0.0.dev7/src/mdit/data/schema_/badge/dynamic.yaml +25 -0
  11. mdit-0.0.0.dev7/src/mdit/data/schema_/create-badges.yaml +24 -0
  12. mdit-0.0.0.dev7/src/mdit/data/schema_/element/_to_review/coc_covenant.yaml +31 -0
  13. mdit-0.0.0.dev7/src/mdit/data/schema_/element/_to_review/heading.yaml +20 -0
  14. mdit-0.0.0.dev7/src/mdit/data/schema_/element/_to_review/highlights.yaml +23 -0
  15. mdit-0.0.0.dev7/src/mdit/data/schema_/element/_to_review/line.yaml +13 -0
  16. mdit-0.0.0.dev7/src/mdit/data/schema_/element/_to_review/newline.yaml +11 -0
  17. mdit-0.0.0.dev7/src/mdit/data/schema_/element/_to_review/paragraph.yaml +15 -0
  18. mdit-0.0.0.dev7/src/mdit/data/schema_/element/_to_review/paragraph_style.yaml +28 -0
  19. mdit-0.0.0.dev7/src/mdit/data/schema_/element/_to_review/spacer.yaml +16 -0
  20. mdit-0.0.0.dev7/src/mdit/data/schema_/element/badge/params.yaml +182 -0
  21. mdit-0.0.0.dev7/src/mdit/data/schema_/element/badges.yaml +46 -0
  22. mdit-0.0.0.dev7/src/mdit/data/schema_/element/image.yaml +20 -0
  23. mdit-0.0.0.dev7/src/mdit/data/schema_/html/attr/align.yaml +5 -0
  24. mdit-0.0.0.dev7/src/mdit/data/schema_/html/attr/size.yaml +5 -0
  25. mdit-0.0.0.dev7/src/mdit/data/schema_/html/attrs.yaml +17 -0
  26. mdit-0.0.0.dev7/src/mdit/data/schema_/html-document.yaml +33 -0
  27. mdit-0.0.0.dev7/src/mdit/data/schema_/pepy/badge-params.yaml +31 -0
  28. mdit-0.0.0.dev7/src/mdit/data/schema_/shields/badge-params.yaml +174 -0
  29. mdit-0.0.0.dev7/src/mdit/data/template/code_of_conduct/contributor_covenant.md +127 -0
  30. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/element.py +1 -1
  31. mdit-0.0.0.dev4/README.md +0 -1
  32. mdit-0.0.0.dev4/src/MDit.egg-info/SOURCES.txt +0 -25
  33. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/setup.cfg +0 -0
  34. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/MDit.egg-info/dependency_links.txt +0 -0
  35. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/MDit.egg-info/not-zip-safe +0 -0
  36. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/MDit.egg-info/top_level.txt +0 -0
  37. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/__init__.py +0 -0
  38. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/container.py +0 -0
  39. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/data/__init__.py +0 -0
  40. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/data/file.py +0 -0
  41. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/data/schema.py +0 -0
  42. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/display.py +0 -0
  43. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/document.py +0 -0
  44. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/generate.py +0 -0
  45. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/parse.py +0 -0
  46. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/protocol.py +0 -0
  47. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/render.py +0 -0
  48. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/renderable.py +0 -0
  49. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/target/__init__.py +0 -0
  50. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/target/md.py +0 -0
  51. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/target/rich.py +0 -0
  52. {mdit-0.0.0.dev4 → mdit-0.0.0.dev7}/src/mdit/template.py +0 -0
@@ -0,0 +1 @@
1
+ graft src/mdit/data
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MDit
3
- Version: 0.0.0.dev4
3
+ Version: 0.0.0.dev7
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: sphinx<8
6
6
  Requires-Dist: myst-parser<4,>3
@@ -18,11 +18,11 @@ Requires-Dist: jupyterlab_myst
18
18
  Requires-Dist: pygments
19
19
  Requires-Dist: rich>=13.8
20
20
  Requires-Dist: pydantic>=2.9
21
- Requires-Dist: PkgData==0.0.0.dev3
22
- Requires-Dist: PySerials==0.0.0.dev7
23
- Requires-Dist: PyLinks==0.0.0.dev27
24
- Requires-Dist: PyBadger==0.0.0.dev8
25
- Requires-Dist: PyColorIt==0.0.0.dev5
21
+ Requires-Dist: referencing>=0.35.1
22
+ Requires-Dist: PkgData==0.0.0.dev4
23
+ Requires-Dist: PySerials==0.0.0.dev10
24
+ Requires-Dist: PyBadger==0.0.0.dev10
25
+ Requires-Dist: PyColorIT==0.0.0.dev7
26
26
  Requires-Dist: ProtocolMan==0.0.0.dev2
27
- Requires-Dist: HTMP==0.0.0.dev3
28
- Requires-Dist: ANSI-SGR==0.0.0.dev9
27
+ Requires-Dist: HTMP==0.0.0.dev4
28
+ Requires-Dist: JSONSchemata==0.0.0.dev6
@@ -0,0 +1,3 @@
1
+ # MDit
2
+
3
+ Dynamically create documents with smart outputs in Markdown, Rich, and HTML.
@@ -17,7 +17,7 @@ namespaces = true
17
17
  # ----------------------------------------- Project Metadata -------------------------------------
18
18
  #
19
19
  [project]
20
- version = "0.0.0.dev4"
20
+ version = "0.0.0.dev7"
21
21
  name = "MDit"
22
22
  requires-python = ">=3.10"
23
23
  dependencies = [
@@ -37,12 +37,12 @@ dependencies = [
37
37
  "pygments",
38
38
  "rich >= 13.8",
39
39
  "pydantic >= 2.9",
40
- "PkgData == 0.0.0.dev3",
41
- "PySerials == 0.0.0.dev7",
42
- "PyLinks == 0.0.0.dev27",
43
- "PyBadger == 0.0.0.dev8",
44
- "PyColorIt == 0.0.0.dev5",
40
+ "referencing >= 0.35.1",
41
+ "PkgData == 0.0.0.dev4",
42
+ "PySerials == 0.0.0.dev10",
43
+ "PyBadger == 0.0.0.dev10",
44
+ "PyColorIT == 0.0.0.dev7",
45
45
  "ProtocolMan == 0.0.0.dev2",
46
- "HTMP == 0.0.0.dev3",
47
- "ANSI-SGR == 0.0.0.dev9",
46
+ "HTMP == 0.0.0.dev4",
47
+ "JSONSchemata == 0.0.0.dev6",
48
48
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MDit
3
- Version: 0.0.0.dev4
3
+ Version: 0.0.0.dev7
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: sphinx<8
6
6
  Requires-Dist: myst-parser<4,>3
@@ -18,11 +18,11 @@ Requires-Dist: jupyterlab_myst
18
18
  Requires-Dist: pygments
19
19
  Requires-Dist: rich>=13.8
20
20
  Requires-Dist: pydantic>=2.9
21
- Requires-Dist: PkgData==0.0.0.dev3
22
- Requires-Dist: PySerials==0.0.0.dev7
23
- Requires-Dist: PyLinks==0.0.0.dev27
24
- Requires-Dist: PyBadger==0.0.0.dev8
25
- Requires-Dist: PyColorIt==0.0.0.dev5
21
+ Requires-Dist: referencing>=0.35.1
22
+ Requires-Dist: PkgData==0.0.0.dev4
23
+ Requires-Dist: PySerials==0.0.0.dev10
24
+ Requires-Dist: PyBadger==0.0.0.dev10
25
+ Requires-Dist: PyColorIT==0.0.0.dev7
26
26
  Requires-Dist: ProtocolMan==0.0.0.dev2
27
- Requires-Dist: HTMP==0.0.0.dev3
28
- Requires-Dist: ANSI-SGR==0.0.0.dev9
27
+ Requires-Dist: HTMP==0.0.0.dev4
28
+ Requires-Dist: JSONSchemata==0.0.0.dev6
@@ -0,0 +1,48 @@
1
+ MANIFEST.in
2
+ README.md
3
+ pyproject.toml
4
+ src/MDit.egg-info/PKG-INFO
5
+ src/MDit.egg-info/SOURCES.txt
6
+ src/MDit.egg-info/dependency_links.txt
7
+ src/MDit.egg-info/not-zip-safe
8
+ src/MDit.egg-info/requires.txt
9
+ src/MDit.egg-info/top_level.txt
10
+ src/mdit/__init__.py
11
+ src/mdit/container.py
12
+ src/mdit/display.py
13
+ src/mdit/document.py
14
+ src/mdit/element.py
15
+ src/mdit/generate.py
16
+ src/mdit/parse.py
17
+ src/mdit/protocol.py
18
+ src/mdit/render.py
19
+ src/mdit/renderable.py
20
+ src/mdit/template.py
21
+ src/mdit/data/__init__.py
22
+ src/mdit/data/file.py
23
+ src/mdit/data/schema.py
24
+ src/mdit/data/schema/document.yaml
25
+ src/mdit/data/schema/element/badge.yaml
26
+ src/mdit/data/schema_/create-badges.yaml
27
+ src/mdit/data/schema_/html-document.yaml
28
+ src/mdit/data/schema_/badge/dynamic.yaml
29
+ src/mdit/data/schema_/element/badges.yaml
30
+ src/mdit/data/schema_/element/image.yaml
31
+ src/mdit/data/schema_/element/_to_review/coc_covenant.yaml
32
+ src/mdit/data/schema_/element/_to_review/heading.yaml
33
+ src/mdit/data/schema_/element/_to_review/highlights.yaml
34
+ src/mdit/data/schema_/element/_to_review/line.yaml
35
+ src/mdit/data/schema_/element/_to_review/newline.yaml
36
+ src/mdit/data/schema_/element/_to_review/paragraph.yaml
37
+ src/mdit/data/schema_/element/_to_review/paragraph_style.yaml
38
+ src/mdit/data/schema_/element/_to_review/spacer.yaml
39
+ src/mdit/data/schema_/element/badge/params.yaml
40
+ src/mdit/data/schema_/html/attrs.yaml
41
+ src/mdit/data/schema_/html/attr/align.yaml
42
+ src/mdit/data/schema_/html/attr/size.yaml
43
+ src/mdit/data/schema_/pepy/badge-params.yaml
44
+ src/mdit/data/schema_/shields/badge-params.yaml
45
+ src/mdit/data/template/code_of_conduct/contributor_covenant.md
46
+ src/mdit/target/__init__.py
47
+ src/mdit/target/md.py
48
+ src/mdit/target/rich.py
@@ -14,11 +14,11 @@ jupyterlab_myst
14
14
  pygments
15
15
  rich>=13.8
16
16
  pydantic>=2.9
17
- PkgData==0.0.0.dev3
18
- PySerials==0.0.0.dev7
19
- PyLinks==0.0.0.dev27
20
- PyBadger==0.0.0.dev8
21
- PyColorIt==0.0.0.dev5
17
+ referencing>=0.35.1
18
+ PkgData==0.0.0.dev4
19
+ PySerials==0.0.0.dev10
20
+ PyBadger==0.0.0.dev10
21
+ PyColorIT==0.0.0.dev7
22
22
  ProtocolMan==0.0.0.dev2
23
- HTMP==0.0.0.dev3
24
- ANSI-SGR==0.0.0.dev9
23
+ HTMP==0.0.0.dev4
24
+ JSONSchemata==0.0.0.dev6
@@ -0,0 +1,19 @@
1
+ $id: https://docsman.repodynamics.com/schema
2
+ description: Contents of a document.
3
+ type: array
4
+ items:
5
+ anyOf:
6
+ - type: string
7
+ - type: object
8
+ required: [ class ]
9
+ properties:
10
+ class:
11
+ type: string
12
+ align_span:
13
+ type: string
14
+ align_div:
15
+ type: string
16
+ attrs_span:
17
+ type: object
18
+ attrs_div:
19
+ type: object
@@ -0,0 +1,83 @@
1
+ $id: https://docsman.repodynamics.com/schema/element/badge
2
+ $schema: https://json-schema.org/draft/2020-12/schema
3
+ title: Badge Creation Parameters
4
+ description: Input parameters for creating a badge.
5
+ type: object
6
+ additionalProperties: false
7
+ required: [ platform, service ]
8
+ properties:
9
+ platform:
10
+ title: Badge Creation Platform
11
+ description: Name of the platform used to create the badge.
12
+ type: string
13
+ enum: [ pepy, shields ]
14
+ default: shields
15
+ service:
16
+ title: Badge Creation Service
17
+ description: Name of the service used to create the badge.
18
+ type: string
19
+ default: generic
20
+ endpoint:
21
+ title: Badge Creation Endpoint
22
+ description: Name of the endpoint for the badge creation service.
23
+ type: string
24
+ href:
25
+ title: Badge Link
26
+ description: URL to link to when the badge is clicked.
27
+ type: string
28
+ title:
29
+ title: HTML title
30
+ type: string
31
+ args:
32
+ title: Badge Creation Arguments
33
+ description: Arguments for creating the badge.
34
+ type: object
35
+ params_light:
36
+ title: Light Badge Parameters
37
+ description: Styling parameters for the light version of the badge.
38
+ type: object
39
+ params_dark:
40
+ title: Dark Badge Parameters
41
+ description: Styling parameters for the dark version of the badge.
42
+ type: object
43
+ attrs_img:
44
+ title: Image Attributes
45
+ description: Attributes for the HTML `<img>` element.
46
+ type: object
47
+ attrs_a:
48
+ title: Anchor Attributes
49
+ description: Attributes for the HTML `<a>` element.
50
+ type: object
51
+ attrs_picture:
52
+ title: Picture Attributes
53
+ description: Attributes for the HTML `<picture>` element.
54
+ type: object
55
+ attrs_source_light:
56
+ title: Light Source Attributes
57
+ description: Attributes for the HTML `<source>` element for the light version of the badge.
58
+ type: object
59
+ attrs_source_dark:
60
+ title: Dark Source Attributes
61
+ description: Attributes for the HTML `<source>` element for the dark version of the badge.
62
+ type: object
63
+ default_light:
64
+ title: Default Theme
65
+ description: |
66
+ Whether the light version (when `true`) or the dark version (when `false`) is the default theme.
67
+ type: boolean
68
+ default: true
69
+ merge_params:
70
+ title: Merge Parameters
71
+ description: |
72
+ Whether to complement the light and dark badge parameters with each other.
73
+ If true, for each theme, missing parameters will be filled
74
+ with the corresponding parameter from the other theme, if available.
75
+ type: boolean
76
+ default: true
77
+ use_defaults:
78
+ title: Use Defaults
79
+ description: |
80
+ Whether to use default values for missing badge parameters and HTML attributes.
81
+ If true, missing items will be filled with default values, when available.
82
+ type: boolean
83
+ default: true
@@ -0,0 +1,25 @@
1
+ $schema: https://json-schema.org/draft/2020-12/schema
2
+ title: Dynamic Badge
3
+ default: { }
4
+ allOf:
5
+ - $ref: doc-badge-attrs
6
+ - required: [ url, query ]
7
+ properties:
8
+ url:
9
+ title: URL to a data source.
10
+ $ref: https://jsonschemata.repodynamics.com/url/http-ftp-sftp
11
+ type:
12
+ title: The type of the data source.
13
+ type: string
14
+ enum: [ json, yaml, toml, xml ]
15
+ query:
16
+ title: A JSONPath expression (or XPath for XML data) to query the data source.
17
+ examples:
18
+ - '$.data'
19
+ type: string
20
+ prefix:
21
+ title: A prefix to prepend to the badge message.
22
+ type: string
23
+ suffix:
24
+ title: A suffix to append to the badge message.
25
+ type: string
@@ -0,0 +1,24 @@
1
+ $id: https://pybadger.repodynamics.com/schema/create-badges
2
+ $schema: https://json-schema.org/draft/2020-12/schema
3
+ title: Badge Series Creation Parameters
4
+ description: Input parameters for creating a series of badges.
5
+ type: object
6
+ additionalProperties: false
7
+ required: [ platform, service ]
8
+ properties:
9
+ default:
10
+ $ref: doc-elements-badges_default
11
+ elements:
12
+ type: array
13
+ minItems: 1
14
+ items:
15
+ anyOf:
16
+ - $ref: doc-badge
17
+ - type: string
18
+ div_align:
19
+ title: Alignment of the div element.
20
+ $ref: doc-html-attr-align
21
+ spacer:
22
+ title: Space element between badges.
23
+ type: string
24
+
@@ -0,0 +1,31 @@
1
+ title: Configurations for the Contributor Covenant Code of Conduct.
2
+ type: object
3
+ additionalProperties: false
4
+ required: [ id, contact ]
5
+ properties:
6
+ id:
7
+ title: ID of the code of conduct.
8
+ type: string
9
+ const: covenant
10
+ contact:
11
+ title: |
12
+ Contact information of the maintainer for the code of conduct.
13
+ type: object
14
+ additionalProperties: false
15
+ required: [ name, url ]
16
+ examples:
17
+ - display: ${{ maintainer.code_of_conduct.name.full }}
18
+ url: ${{ maintainer.code_of_conduct.email.url }}
19
+ properties:
20
+ name:
21
+ title: Display text of the link.
22
+ type: string
23
+ examples:
24
+ - ${{ maintainer.code_of_conduct.name.full }}
25
+ url:
26
+ title: URL of the link.
27
+ description: |
28
+ For email addresses, use `mailto:`.
29
+ type: string
30
+ examples:
31
+ - ${{ maintainer.code_of_conduct.email.url }}
@@ -0,0 +1,20 @@
1
+ title: Body headings configurations.
2
+ type: object
3
+ required: [ id, level, content ]
4
+ properties:
5
+ id:
6
+ type: string
7
+ const: heading
8
+ level:
9
+ title: Level of the heading.
10
+ type: integer
11
+ minimum: 1
12
+ maximum: 6
13
+ div_align:
14
+ title: Alignment of the div element.
15
+ $ref: doc-html-attr-align
16
+ content:
17
+ oneOf:
18
+ - type: string
19
+ - $ref: doc-elements-badges
20
+ - $ref: doc-elements-image
@@ -0,0 +1,23 @@
1
+ title: Highlights
2
+ type: object
3
+ required: [ id, highlights ]
4
+ properties:
5
+ id:
6
+ type: string
7
+ const: highlights
8
+ div_align:
9
+ title: Alignment of the div element.
10
+ $ref: doc-html-attr-align
11
+ text_align:
12
+ title: Justification of the paragraph.
13
+ $ref: doc-html-attr-align
14
+ default: justify
15
+ text_style:
16
+ $ref: doc-elements-paragraph_style
17
+ highlights:
18
+ $ref: common-highlights
19
+ space:
20
+ title: Space element between title badges and text.
21
+ type: string
22
+ badge_default:
23
+ $ref: doc-elements-badges_default
@@ -0,0 +1,13 @@
1
+ title: Horizontal Line
2
+ type: object
3
+ required: [ id ]
4
+ properties:
5
+ id:
6
+ type: string
7
+ const: line
8
+ width:
9
+ title: Width of the line.
10
+ $ref: doc-html-attr-size
11
+ div_align:
12
+ title: Alignment of the line.
13
+ $ref: doc-html-attr-align
@@ -0,0 +1,11 @@
1
+ title: Newline
2
+ type: object
3
+ required: [ id ]
4
+ properties:
5
+ id:
6
+ type: string
7
+ const: newline
8
+ count:
9
+ title: Number of newlines.
10
+ type: integer
11
+ minimum: 1
@@ -0,0 +1,15 @@
1
+ title: Paragraph
2
+ type: object
3
+ required: [ id, text ]
4
+ properties:
5
+ id:
6
+ type: string
7
+ const: paragraph
8
+ align:
9
+ title: Justification of the paragraph.
10
+ $ref: doc-html-attr-align
11
+ text:
12
+ title: Text of the paragraph.
13
+ type: string
14
+ style:
15
+ $ref: doc-elements-paragraph_style
@@ -0,0 +1,28 @@
1
+ type: array
2
+ items:
3
+ type: object
4
+ required: [ word ]
5
+ properties:
6
+ word:
7
+ type: string
8
+ strong:
9
+ type: boolean
10
+ default: false
11
+ bold:
12
+ type: boolean
13
+ default: false
14
+ italic:
15
+ type: boolean
16
+ default: false
17
+ emphasis:
18
+ type: boolean
19
+ default: false
20
+ url:
21
+ $ref: https://jsonschemata.repodynamics.com/url/http-ftp-sftp
22
+ count:
23
+ type: integer
24
+ minimum: 0
25
+ default: 0
26
+ case_sensitive:
27
+ type: boolean
28
+ default: false
@@ -0,0 +1,16 @@
1
+ title: Spacer
2
+ type: object
3
+ required: [ id ]
4
+ properties:
5
+ id:
6
+ type: string
7
+ const: spacer
8
+ width:
9
+ title: Width of the line.
10
+ $ref: doc-html-attr-size
11
+ height:
12
+ title: Height of the spacer.
13
+ $ref: doc-html-attr-size
14
+ align:
15
+ title: Alignment of the spacer.
16
+ $ref: doc-html-attr-align
@@ -0,0 +1,182 @@
1
+ $id: https://pybadger.repodynamics.com/schema/shields/badge-params
2
+ $schema: https://json-schema.org/draft/2020-12/schema
3
+ title: Shields Badge Parameters
4
+ description: Common settings for [shields.io](https://shields.io) badges.
5
+ type: object
6
+ additionalProperties: false
7
+ properties:
8
+ label:
9
+ title: Badge Label
10
+ description: Label of the badge, i.e., the text displayed on the left side of the badge.
11
+ type: string
12
+ style:
13
+ title: Badge Style
14
+ description: Style of the badge.
15
+ type: string
16
+ enum: [ flat, flat-square, plastic, for-the-badge, social ]
17
+ color:
18
+ title: Badge Color
19
+ description: Color of the badge.
20
+ $ref: https://jsonschemata.repodynamics.com/color/css
21
+ label_color:
22
+ title: Badge Label Color
23
+ description: Color of the badge label.
24
+ $ref: https://jsonschemata.repodynamics.com/color/css
25
+ logo:
26
+ title: Badge Logo
27
+ description: |
28
+ It can either be a [Simple Icons](https://simpleicons.org/) icon slug
29
+ (see [full list](https://github.com/simple-icons/simple-icons/blob/master/slugs.md)),
30
+ a base64-encoded data URI with 'image' media type
31
+ (cf. [Shields.IO documentation](https://shields.io/docs/logos)),
32
+ or a URL or local filepath to an image file.
33
+ The `logo_type` key can be used to explicitly define the type of logo data,
34
+ otherwise it is determined as follows:
35
+ 1. If it starts with 'data:', it is a data URI.
36
+ 2. If it starts with 'http' or 'https', it is a URL.
37
+ 3. If it exists as a file, it is a local filepath.
38
+ 4. It is a Simple Icons slug.
39
+ The Shields API only accepts Simple Icons slugs and data URIs;
40
+ images from URLs and local filepaths are downloaded/read and automatically converted to data URIs.
41
+
42
+ "website": {"label": "Website", "color": "21759B", "logo": "wordpress"},
43
+ "email": {"label": "Email", "color": "8B89CC", "logo": "maildotru"},
44
+ "linkedin": {"label": "LinkedIn", "color": "0A66C2", "logo": "linkedin"},
45
+ "twitter": {"label": "Twitter", "color": "1DA1F2", "logo": "twitter"},
46
+ "researchgate": {"label": "ResearchGate", "color": "00CCBB", "logo": "researchgate"},
47
+ "gscholar": {"label": "Google Scholar", "color": "4285F4", "logo": "googlescholar"},
48
+ "orcid": {"label": "ORCID", "color": "A6CE39", "logo": "orcid"},
49
+ $ref: https://jsonschemata.repodynamics.com/string/oneline
50
+ logo_color:
51
+ title: Badge Logo Color
52
+ description: |
53
+ Color of the badge logo.
54
+ This is only applicable if `logo` is set to a Simple Icons slug.
55
+ $ref: https://jsonschemata.repodynamics.com/color/css
56
+ logo_width:
57
+ title: Badge Logo Width
58
+ description: |
59
+ Width of the badge logo.
60
+ oneOf:
61
+ - $ref: https://jsonschemata.repodynamics.com/integer/non-negative
62
+ - type: string
63
+ pattern: ^[1-9]\d*$
64
+ logo_size:
65
+ title: Badge Logo Size
66
+ description: |
67
+ Make the logo adaptively resize, by setting this value to 'auto'
68
+ This is only applicable if `logo` is set to a Simple Icons slug.
69
+ type: stringtheme_params
70
+ enum: [ auto ]
71
+ logo_type:
72
+ title: Logo Data Type
73
+ description: |
74
+ Explicitly define the type of logo data:
75
+ - 'name': Simple Icons slug
76
+ - 'data': base64-encoded data URI
77
+ - 'file': Local filepath to an image file
78
+ - 'url': URL to an image file
79
+ type: string
80
+ enum: [ name, data, file, url ]
81
+ logo_media_type:
82
+ title: Logo Media Type
83
+ description: |
84
+ Media type of the logo data.
85
+ This is only applicable if the logo data is a URL or local filepath.
86
+ In these cases, if the media type is not explicitly defined, it will
87
+ be guessed from the extension of the image file,
88
+ raising an error if the media type cannot be determined.
89
+ Such cases can be prevented by explicitly defining the media type here.
90
+ type: string
91
+ enum:
92
+ - aces
93
+ - apng
94
+ - avci
95
+ - avcs
96
+ - avif
97
+ - bmp
98
+ - cgm
99
+ - dicom-rle
100
+ - dpx
101
+ - emf
102
+ - example
103
+ - fits
104
+ - g3fax
105
+ - gif
106
+ - heic
107
+ - heic-sequence
108
+ - heif
109
+ - heif-sequence
110
+ - hej2k
111
+ - hsj2
112
+ - ief
113
+ - j2c
114
+ - jls
115
+ - jp2
116
+ - jpeg
117
+ - jph
118
+ - jphc
119
+ - jpm
120
+ - jpx
121
+ - jxl
122
+ - jxr
123
+ - jxrA
124
+ - jxrS
125
+ - jxs
126
+ - jxsc
127
+ - jxsi
128
+ - jxss
129
+ - ktx
130
+ - ktx2
131
+ - naplps
132
+ - png
133
+ - prs.btif
134
+ - prs.pti
135
+ - pwg-raster
136
+ - svg+xml
137
+ - t38
138
+ - tiff
139
+ - tiff-fx
140
+ - vnd.adobe.photoshop
141
+ - vnd.airzip.accelerator.azv
142
+ - vnd.cns.inf2
143
+ - vnd.dece.graphic
144
+ - vnd.djvu
145
+ - vnd.dwg
146
+ - vnd.dxf
147
+ - vnd.dvb.subtitle
148
+ - vnd.fastbidsheet
149
+ - vnd.fpx
150
+ - vnd.fst
151
+ - vnd.fujixerox.edmics-mmr
152
+ - vnd.fujixerox.edmics-rlc
153
+ - vnd.globalgraphics.pgb
154
+ - vnd.microsoft.icon
155
+ - vnd.mix
156
+ - vnd.ms-modi
157
+ - vnd.mozilla.apng
158
+ - vnd.net-fpx
159
+ - vnd.pco.b16
160
+ - vnd.radiance
161
+ - vnd.sealed.png
162
+ - vnd.sealedmedia.softseal.gif
163
+ - vnd.sealedmedia.softseal.jpg
164
+ - vnd.svf
165
+ - vnd.tencent.tap
166
+ - vnd.valve.source.texture
167
+ - vnd.wap.wbmp
168
+ - vnd.xiff
169
+ - vnd.zbrush.pcx
170
+ - webp
171
+ - wmf
172
+ - x-icon
173
+ cache_seconds:
174
+ title: Cache Seconds
175
+ description: |
176
+ Number of seconds to cache the badge data.
177
+ This is useful to reduce the load on the Shields.IO server,
178
+ by increasing the number of static badges.
179
+ oneOf:
180
+ - $ref: https://jsonschemata.repodynamics.com/integer/non-negative
181
+ - type: string
182
+ pattern: ^[1-9]\d*$
@@ -0,0 +1,46 @@
1
+ type: object
2
+ required: [ id, elements ]
3
+ properties:
4
+ id:
5
+ type: string
6
+ const: badges
7
+ elements:
8
+ type: array
9
+ minItems: 1
10
+ items:
11
+ anyOf:
12
+ - $ref: doc-badge
13
+ - type: string
14
+ div_align:
15
+ title: Alignment of the div element.
16
+ $ref: doc-html-attr-align
17
+ spacer:
18
+ title: Space element between badges.
19
+ type: string
20
+ default:
21
+ title: General badge configurations.
22
+ description: |
23
+ Any settings here will be used as the default value for all footer badges.
24
+ allOf:
25
+ - $ref: doc-html-attrs
26
+ - properties:
27
+ style:
28
+ $ref: doc-badge-attr-style
29
+ label:
30
+ type: object
31
+ additionalProperties: false
32
+ properties:
33
+ text:
34
+ type: string
35
+ color:
36
+ $ref: doc-color-theme_gradient
37
+ message:
38
+ type: object
39
+ additionalProperties: false
40
+ properties:
41
+ text:
42
+ type: string
43
+ color:
44
+ $ref: doc-color-theme_gradient
45
+ logo:
46
+ $ref: doc-badge-attr-logo_theme
@@ -0,0 +1,20 @@
1
+ title: Image
2
+ allOf:
3
+ - $ref: doc-html-attrs
4
+ - required: [ id, src ]
5
+ properties:
6
+ id:
7
+ type: string
8
+ const: image
9
+ src:
10
+ type: object
11
+ additionalProperties: false
12
+ required: [ light ]
13
+ properties:
14
+ light:
15
+ $ref: https://jsonschemata.repodynamics.com/url/http-ftp-sftp
16
+ dark:
17
+ $ref: https://jsonschemata.repodynamics.com/url/http-ftp-sftp
18
+ div_align:
19
+ title: Alignment of the div element.
20
+ $ref: doc-html-attr-align
@@ -0,0 +1,5 @@
1
+ $schema: https://json-schema.org/draft/2020-12/schema
2
+ title: HTML Align
3
+ description: Alignment of an HTML element.
4
+ type: string
5
+ enum: [ left, center, right, justify ]
@@ -0,0 +1,5 @@
1
+ $schema: https://json-schema.org/draft/2020-12/schema
2
+ title: HTML Size
3
+ description: Size of an HTML element.
4
+ type: string
5
+ pattern: ^\d+(px|em|rem|%)$
@@ -0,0 +1,17 @@
1
+ alt$schema: https://json-schema.org/draft/2020-12/schema
2
+ title: HTML Attributes
3
+ description: Attributes for HTML elements.
4
+ type: object
5
+ properties:
6
+ href:
7
+ type: string
8
+ alt:
9
+ type: string
10
+ title:
11
+ type: string
12
+ width:
13
+ $ref: doc-html-attr-size
14
+ height:
15
+ $ref: doc-html-attr-size
16
+ align:
17
+ $ref: doc-html-attr-align
@@ -0,0 +1,33 @@
1
+ $id: https://docsman.repodynamics.com/schema/html-document
2
+ $schema: https://json-schema.org/draft/2020-12/schema
3
+ title: HTML Document
4
+ description: Parameters for creating an HTML document.
5
+ type: object
6
+ additionalProperties: false
7
+ required: [ type ]
8
+ properties:
9
+ type:
10
+ title: Document Type
11
+ description: Type of the document.
12
+ type: string
13
+ const: html
14
+ body:
15
+ title: Document Body
16
+ description: Contents of the `<body>` element.
17
+ type: array
18
+ head:
19
+ title: Document Head
20
+ description: Contents of the `<head>` element.
21
+ type: array
22
+ html_attrs:
23
+ title: HTML Attributes
24
+ description: Attributes for the `<html>` element.
25
+ type: object
26
+ head_attrs:
27
+ title: Head Attributes
28
+ description: Attributes for the `<head>` element.
29
+ type: object
30
+ body_attrs:
31
+ title: Body Attributes
32
+ description: Attributes for the `<body>` element.
33
+ type: object
@@ -0,0 +1,31 @@
1
+ $id: https://pybadger.repodynamics.com/schema/pepy/badge-params
2
+ $schema: https://json-schema.org/draft/2020-12/schema
3
+ title: PePy Badge Parameters
4
+ description: Common settings for [PePy](https://www.pepy.tech) personalized badges.
5
+ $comment: |
6
+ References:
7
+ - https://github.com/psincraian/pepy/blob/5199022173562ed0118f947c6c58371e2dd2aaec/pepy/domain/model.py#L161
8
+ - https://github.com/psincraian/pepy/blob/master/pepy/application/badge_service.py
9
+ - https://github.com/google/pybadges/blob/master/pybadges/__init__.py
10
+ type: object
11
+ additionalProperties: false
12
+ properties:
13
+ left_text:
14
+ title: Badge Label
15
+ description: Label of the badge, i.e., the text displayed on the left side of the badge.
16
+ type: string
17
+ left_color:
18
+ title: Badge Label Color
19
+ description: Color of the badge label.
20
+ $ref: https://jsonschemata.repodynamics.com/color/css
21
+ right_color:
22
+ title: Badge Color
23
+ description: Color of the right side of the badge.
24
+ $ref: https://jsonschemata.repodynamics.com/color/css
25
+ units:
26
+ title: Units
27
+ description: |
28
+ Unit of numbers shown on the badge.
29
+ type: string
30
+ enum: [ international_system, abbreviation, none ]
31
+ default: international_system
@@ -0,0 +1,174 @@
1
+ $id: https://pybadger.repodynamics.com/schema/shields/badge-params
2
+ $schema: https://json-schema.org/draft/2020-12/schema
3
+ title: Shields Badge Parameters
4
+ description: Common settings for [shields.io](https://shields.io) badges.
5
+ type: object
6
+ additionalProperties: false
7
+ properties:
8
+ label:
9
+ title: Badge Label
10
+ description: Label of the badge, i.e., the text displayed on the left side of the badge.
11
+ type: string
12
+ style:
13
+ title: Badge Style
14
+ description: Style of the badge.
15
+ type: string
16
+ enum: [ flat, flat-square, plastic, for-the-badge, social ]
17
+ color:
18
+ title: Badge Color
19
+ description: Color of the badge.
20
+ $ref: https://jsonschemata.repodynamics.com/color/css
21
+ label_color:
22
+ title: Badge Label Color
23
+ description: Color of the badge label.
24
+ $ref: https://jsonschemata.repodynamics.com/color/css
25
+ logo:
26
+ title: Badge Logo
27
+ description: |
28
+ It can either be a [Simple Icons](https://simpleicons.org/) icon slug
29
+ (see [full list](https://github.com/simple-icons/simple-icons/blob/master/slugs.md)),
30
+ a base64-encoded data URI with 'image' media type
31
+ (cf. [Shields.IO documentation](https://shields.io/docs/logos)),
32
+ or a URL or local filepath to an image file.
33
+ The `logo_type` key can be used to explicitly define the type of logo data,
34
+ otherwise it is determined as follows:
35
+ 1. If it starts with 'data:', it is a data URI.
36
+ 2. If it starts with 'http' or 'https', it is a URL.
37
+ 3. If it exists as a file, it is a local filepath.
38
+ 4. It is a Simple Icons slug.
39
+ The Shields API only accepts Simple Icons slugs and data URIs;
40
+ images from URLs and local filepaths are downloaded/read and automatically converted to data URIs.
41
+ $ref: https://jsonschemata.repodynamics.com/string/oneline
42
+ logo_color:
43
+ title: Badge Logo Color
44
+ description: |
45
+ Color of the badge logo.
46
+ This is only applicable if `logo` is set to a Simple Icons slug.
47
+ $ref: https://jsonschemata.repodynamics.com/color/css
48
+ logo_width:
49
+ title: Badge Logo Width
50
+ description: |
51
+ Width of the badge logo.
52
+ oneOf:
53
+ - $ref: https://jsonschemata.repodynamics.com/integer/non-negative
54
+ - type: string
55
+ pattern: ^[1-9]\d*$
56
+ logo_size:
57
+ title: Badge Logo Size
58
+ description: |
59
+ Make the logo adaptively resize, by setting this value to 'auto'
60
+ This is only applicable if `logo` is set to a Simple Icons slug.
61
+ type: stringtheme_params
62
+ enum: [ auto ]
63
+ logo_type:
64
+ title: Logo Data Type
65
+ description: |
66
+ Explicitly define the type of logo data:
67
+ - 'name': Simple Icons slug
68
+ - 'data': base64-encoded data URI
69
+ - 'file': Local filepath to an image file
70
+ - 'url': URL to an image file
71
+ type: string
72
+ enum: [ name, data, file, url ]
73
+ logo_media_type:
74
+ title: Logo Media Type
75
+ description: |
76
+ Media type of the logo data.
77
+ This is only applicable if the logo data is a URL or local filepath.
78
+ In these cases, if the media type is not explicitly defined, it will
79
+ be guessed from the extension of the image file,
80
+ raising an error if the media type cannot be determined.
81
+ Such cases can be prevented by explicitly defining the media type here.
82
+ type: string
83
+ enum:
84
+ - aces
85
+ - apng
86
+ - avci
87
+ - avcs
88
+ - avif
89
+ - bmp
90
+ - cgm
91
+ - dicom-rle
92
+ - dpx
93
+ - emf
94
+ - example
95
+ - fits
96
+ - g3fax
97
+ - gif
98
+ - heic
99
+ - heic-sequence
100
+ - heif
101
+ - heif-sequence
102
+ - hej2k
103
+ - hsj2
104
+ - ief
105
+ - j2c
106
+ - jls
107
+ - jp2
108
+ - jpeg
109
+ - jph
110
+ - jphc
111
+ - jpm
112
+ - jpx
113
+ - jxl
114
+ - jxr
115
+ - jxrA
116
+ - jxrS
117
+ - jxs
118
+ - jxsc
119
+ - jxsi
120
+ - jxss
121
+ - ktx
122
+ - ktx2
123
+ - naplps
124
+ - png
125
+ - prs.btif
126
+ - prs.pti
127
+ - pwg-raster
128
+ - svg+xml
129
+ - t38
130
+ - tiff
131
+ - tiff-fx
132
+ - vnd.adobe.photoshop
133
+ - vnd.airzip.accelerator.azv
134
+ - vnd.cns.inf2
135
+ - vnd.dece.graphic
136
+ - vnd.djvu
137
+ - vnd.dwg
138
+ - vnd.dxf
139
+ - vnd.dvb.subtitle
140
+ - vnd.fastbidsheet
141
+ - vnd.fpx
142
+ - vnd.fst
143
+ - vnd.fujixerox.edmics-mmr
144
+ - vnd.fujixerox.edmics-rlc
145
+ - vnd.globalgraphics.pgb
146
+ - vnd.microsoft.icon
147
+ - vnd.mix
148
+ - vnd.ms-modi
149
+ - vnd.mozilla.apng
150
+ - vnd.net-fpx
151
+ - vnd.pco.b16
152
+ - vnd.radiance
153
+ - vnd.sealed.png
154
+ - vnd.sealedmedia.softseal.gif
155
+ - vnd.sealedmedia.softseal.jpg
156
+ - vnd.svf
157
+ - vnd.tencent.tap
158
+ - vnd.valve.source.texture
159
+ - vnd.wap.wbmp
160
+ - vnd.xiff
161
+ - vnd.zbrush.pcx
162
+ - webp
163
+ - wmf
164
+ - x-icon
165
+ cache_seconds:
166
+ title: Cache Seconds
167
+ description: |
168
+ Number of seconds to cache the badge data.
169
+ This is useful to reduce the load on the Shields.IO server,
170
+ by increasing the number of static badges.
171
+ oneOf:
172
+ - $ref: https://jsonschemata.repodynamics.com/integer/non-negative
173
+ - type: string
174
+ pattern: ^[1-9]\d*$
@@ -0,0 +1,127 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at {contact}.
63
+ All complaints will be reviewed and investigated promptly and fairly.
64
+
65
+ All community leaders are obligated to respect the privacy and security of the
66
+ reporter of any incident.
67
+
68
+ ## Enforcement Guidelines
69
+
70
+ Community leaders will follow these Community Impact Guidelines in determining
71
+ the consequences for any action they deem in violation of this Code of Conduct:
72
+
73
+ ### 1. Correction
74
+
75
+ **Community Impact**: Use of inappropriate language or other behavior deemed
76
+ unprofessional or unwelcome in the community.
77
+
78
+ **Consequence**: A private, written warning from community leaders, providing
79
+ clarity around the nature of the violation and an explanation of why the
80
+ behavior was inappropriate. A public apology may be requested.
81
+
82
+ ### 2. Warning
83
+
84
+ **Community Impact**: A violation through a single incident or series
85
+ of actions.
86
+
87
+ **Consequence**: A warning with consequences for continued behavior. No
88
+ interaction with the people involved, including unsolicited interaction with
89
+ those enforcing the Code of Conduct, for a specified period of time. This
90
+ includes avoiding interactions in community spaces as well as external channels
91
+ like social media. Violating these terms may lead to a temporary or
92
+ permanent ban.
93
+
94
+ ### 3. Temporary Ban
95
+
96
+ **Community Impact**: A serious violation of community standards, including
97
+ sustained inappropriate behavior.
98
+
99
+ **Consequence**: A temporary ban from any sort of interaction or public
100
+ communication with the community for a specified period of time. No public or
101
+ private interaction with the people involved, including unsolicited interaction
102
+ with those enforcing the Code of Conduct, is allowed during this period.
103
+ Violating these terms may lead to a permanent ban.
104
+
105
+ ### 4. Permanent Ban
106
+
107
+ **Community Impact**: Demonstrating a pattern of violation of community
108
+ standards, including sustained inappropriate behavior, harassment of an
109
+ individual, or aggression toward or disparagement of classes of individuals.
110
+
111
+ **Consequence**: A permanent ban from any sort of public interaction within
112
+ the community.
113
+
114
+ ## Attribution
115
+
116
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
117
+ version 2.0, available at
118
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
119
+
120
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
121
+ enforcement ladder](https://github.com/mozilla/diversity).
122
+
123
+ [homepage]: https://www.contributor-covenant.org
124
+
125
+ For answers to common questions about this code of conduct, see the FAQ at
126
+ https://www.contributor-covenant.org/faq. Translations are available at
127
+ https://www.contributor-covenant.org/translations.
@@ -959,7 +959,7 @@ class FieldList(Element):
959
959
  items = [
960
960
  (
961
961
  item.title.source(target=target, filters=filters),
962
- item.description.source(target=target, filters=filters) if item.description else ""
962
+ item.body.source(target=target, filters=filters) if item.body else ""
963
963
  ) for item in self.content.elements(target=target, filters=filters)
964
964
  ]
965
965
  return self.config_rich.make(items)
mdit-0.0.0.dev4/README.md DELETED
@@ -1 +0,0 @@
1
- # MDit
@@ -1,25 +0,0 @@
1
- README.md
2
- pyproject.toml
3
- src/MDit.egg-info/PKG-INFO
4
- src/MDit.egg-info/SOURCES.txt
5
- src/MDit.egg-info/dependency_links.txt
6
- src/MDit.egg-info/not-zip-safe
7
- src/MDit.egg-info/requires.txt
8
- src/MDit.egg-info/top_level.txt
9
- src/mdit/__init__.py
10
- src/mdit/container.py
11
- src/mdit/display.py
12
- src/mdit/document.py
13
- src/mdit/element.py
14
- src/mdit/generate.py
15
- src/mdit/parse.py
16
- src/mdit/protocol.py
17
- src/mdit/render.py
18
- src/mdit/renderable.py
19
- src/mdit/template.py
20
- src/mdit/data/__init__.py
21
- src/mdit/data/file.py
22
- src/mdit/data/schema.py
23
- src/mdit/target/__init__.py
24
- src/mdit/target/md.py
25
- src/mdit/target/rich.py
File without changes
File without changes
File without changes
File without changes