mkdocs-wikilinks-plugin 0.1.2__tar.gz → 0.1.3__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.
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/PKG-INFO +2 -4
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_wikilinks_plugin.egg-info/PKG-INFO +2 -4
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/setup.py +2 -3
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/LICENSE +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/README.md +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/__init__.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/file_mapper.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/plugin.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/replacer.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/scanners/__init__.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/scanners/base_link_scanner.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/scanners/md_link_scanner.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/scanners/reference_link_scanner.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/scanners/wiki_link_scanner.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/types.py +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_wikilinks_plugin.egg-info/SOURCES.txt +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_wikilinks_plugin.egg-info/dependency_links.txt +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_wikilinks_plugin.egg-info/entry_points.txt +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_wikilinks_plugin.egg-info/requires.txt +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_wikilinks_plugin.egg-info/top_level.txt +0 -0
- {mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/setup.cfg +0 -0
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocs-wikilinks-plugin
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A mkdocs plugin that makes linking to other documents easy.
|
|
5
|
-
Home-page: https://github.com/carlos-truong/mkdocs-wikilinks
|
|
5
|
+
Home-page: https://github.com/carlos-truong/mkdocs-wikilinks
|
|
6
6
|
Author: Carlos
|
|
7
|
-
Author-email: carlos.truong.dev@gmail.com
|
|
8
7
|
License: MIT
|
|
9
8
|
Keywords: mkdocs,wikilinks,ezlinks,obsidian,roam
|
|
10
9
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -19,7 +18,6 @@ Requires-Dist: mkdocs
|
|
|
19
18
|
Requires-Dist: dataclasses>=0.7; python_version < "3.7.0"
|
|
20
19
|
Requires-Dist: pygtrie==2.*
|
|
21
20
|
Dynamic: author
|
|
22
|
-
Dynamic: author-email
|
|
23
21
|
Dynamic: classifier
|
|
24
22
|
Dynamic: description
|
|
25
23
|
Dynamic: description-content-type
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocs-wikilinks-plugin
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A mkdocs plugin that makes linking to other documents easy.
|
|
5
|
-
Home-page: https://github.com/carlos-truong/mkdocs-wikilinks
|
|
5
|
+
Home-page: https://github.com/carlos-truong/mkdocs-wikilinks
|
|
6
6
|
Author: Carlos
|
|
7
|
-
Author-email: carlos.truong.dev@gmail.com
|
|
8
7
|
License: MIT
|
|
9
8
|
Keywords: mkdocs,wikilinks,ezlinks,obsidian,roam
|
|
10
9
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -19,7 +18,6 @@ Requires-Dist: mkdocs
|
|
|
19
18
|
Requires-Dist: dataclasses>=0.7; python_version < "3.7.0"
|
|
20
19
|
Requires-Dist: pygtrie==2.*
|
|
21
20
|
Dynamic: author
|
|
22
|
-
Dynamic: author-email
|
|
23
21
|
Dynamic: classifier
|
|
24
22
|
Dynamic: description
|
|
25
23
|
Dynamic: description-content-type
|
|
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|
|
3
3
|
description = "A mkdocs plugin that makes linking to other documents easy."
|
|
4
4
|
long_description = description
|
|
5
5
|
|
|
6
|
-
version="0.1.
|
|
6
|
+
version="0.1.3"
|
|
7
7
|
|
|
8
8
|
with open("README.md", "r") as f:
|
|
9
9
|
long_description = f.read()
|
|
@@ -16,9 +16,8 @@ setup(
|
|
|
16
16
|
long_description=long_description,
|
|
17
17
|
long_description_content_type="text/markdown",
|
|
18
18
|
keywords="mkdocs, wikilinks, ezlinks, obsidian, roam",
|
|
19
|
-
url="https://github.com/carlos-truong/mkdocs-wikilinks
|
|
19
|
+
url="https://github.com/carlos-truong/mkdocs-wikilinks",
|
|
20
20
|
author="Carlos",
|
|
21
|
-
author_email="carlos.truong.dev@gmail.com",
|
|
22
21
|
license="MIT",
|
|
23
22
|
python_requires=">=3.6",
|
|
24
23
|
install_requires=required,
|
|
File without changes
|
|
File without changes
|
{mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/__init__.py
RENAMED
|
File without changes
|
{mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/file_mapper.py
RENAMED
|
File without changes
|
{mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/plugin.py
RENAMED
|
File without changes
|
{mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/replacer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mkdocs_wikilinks_plugin-0.1.2 → mkdocs_wikilinks_plugin-0.1.3}/mkdocs_ezlinks_plugin/types.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|