mkdocs-raw-markdown 0.1.0__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.
@@ -0,0 +1 @@
1
+ recursive-include .husky *
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: mkdocs-raw-markdown
3
+ Version: 0.1.0
4
+ Summary: MkDocs plugin to serve raw markdown files via .md URL suffix
5
+ Author: Aldo
6
+ License-Expression: MIT
7
+ Project-URL: Repository, https://github.com/Aldo-f/mkdocs-raw-markdown
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: mkdocs>=1.5.0
11
+
12
+
13
+ # mkdocs-raw-markdown
14
+
15
+ A tiny MkDocs plugin that makes the original Markdown source available at a URL ending with ``.md``.
16
+
17
+ ## Installation
18
+ ```bash
19
+ pip install mkdocs-raw-markdown
20
+ ```
21
+
22
+ ## Usage
23
+ Add to your ``mkdocs.yml``:
24
+ ```yaml
25
+ plugins:
26
+ - search
27
+ - mkdocs-raw-markdown:
28
+ suffix: .md # optional, default ".md"
29
+ ```
30
+
31
+ Now ``https://example.com/path/to/page.md`` returns the raw Markdown with ``Content-Type: text/markdown``.
@@ -0,0 +1,20 @@
1
+
2
+ # mkdocs-raw-markdown
3
+
4
+ A tiny MkDocs plugin that makes the original Markdown source available at a URL ending with ``.md``.
5
+
6
+ ## Installation
7
+ ```bash
8
+ pip install mkdocs-raw-markdown
9
+ ```
10
+
11
+ ## Usage
12
+ Add to your ``mkdocs.yml``:
13
+ ```yaml
14
+ plugins:
15
+ - search
16
+ - mkdocs-raw-markdown:
17
+ suffix: .md # optional, default ".md"
18
+ ```
19
+
20
+ Now ``https://example.com/path/to/page.md`` returns the raw Markdown with ``Content-Type: text/markdown``.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: mkdocs-raw-markdown
3
+ Version: 0.1.0
4
+ Summary: MkDocs plugin to serve raw markdown files via .md URL suffix
5
+ Author: Aldo
6
+ License-Expression: MIT
7
+ Project-URL: Repository, https://github.com/Aldo-f/mkdocs-raw-markdown
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: mkdocs>=1.5.0
11
+
12
+
13
+ # mkdocs-raw-markdown
14
+
15
+ A tiny MkDocs plugin that makes the original Markdown source available at a URL ending with ``.md``.
16
+
17
+ ## Installation
18
+ ```bash
19
+ pip install mkdocs-raw-markdown
20
+ ```
21
+
22
+ ## Usage
23
+ Add to your ``mkdocs.yml``:
24
+ ```yaml
25
+ plugins:
26
+ - search
27
+ - mkdocs-raw-markdown:
28
+ suffix: .md # optional, default ".md"
29
+ ```
30
+
31
+ Now ``https://example.com/path/to/page.md`` returns the raw Markdown with ``Content-Type: text/markdown``.
@@ -0,0 +1,9 @@
1
+ MANIFEST.in
2
+ README.md
3
+ pyproject.toml
4
+ mkdocs_raw_markdown.egg-info/PKG-INFO
5
+ mkdocs_raw_markdown.egg-info/SOURCES.txt
6
+ mkdocs_raw_markdown.egg-info/dependency_links.txt
7
+ mkdocs_raw_markdown.egg-info/entry_points.txt
8
+ mkdocs_raw_markdown.egg-info/requires.txt
9
+ mkdocs_raw_markdown.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [mkdocs.plugins]
2
+ mkdocs_raw_markdown = mkdocs_raw_markdown.plugin:RawMarkdownPlugin
@@ -0,0 +1,23 @@
1
+
2
+ [build-system]
3
+ requires = ["setuptools>=61.0", "wheel"]
4
+ build-backend = "setuptools.build_meta"
5
+
6
+ [project]
7
+ name = "mkdocs-raw-markdown"
8
+ version = "0.1.0"
9
+ description = "MkDocs plugin to serve raw markdown files via .md URL suffix"
10
+ readme = "README.md"
11
+ license = "MIT"
12
+ authors = [{name = "Aldo"}]
13
+ requires-python = ">=3.9"
14
+ dependencies = ["mkdocs>=1.5.0"]
15
+
16
+ [project.urls]
17
+ Repository = "https://github.com/Aldo-f/mkdocs-raw-markdown"
18
+
19
+ [tool.setuptools.packages.find]
20
+ where = ["."]
21
+
22
+ [project.entry-points."mkdocs.plugins"]
23
+ mkdocs_raw_markdown = "mkdocs_raw_markdown.plugin:RawMarkdownPlugin"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+