ophinode 0.0.1a3__tar.gz → 0.0.1a4__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.
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/PKG-INFO +1 -1
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/pyproject.toml +1 -1
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/__init__.py +2 -2
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/.gitignore +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/LICENSE +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/README.md +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/__main__.py +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/constants.py +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/exceptions.py +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/nodes/__init__.py +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/nodes/base.py +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/nodes/html.py +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/rendering.py +0 -0
- {ophinode-0.0.1a3 → ophinode-0.0.1a4}/src/ophinode/site.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ophinode
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.1a4
|
4
4
|
Summary: A static site generator written in Python
|
5
5
|
Project-URL: Homepage, https://github.com/deflatedlatte/ophinode
|
6
6
|
Project-URL: Issues, https://github.com/deflatedlatte/ophinode/issues
|
@@ -203,7 +203,7 @@ __all__ = [
|
|
203
203
|
"Del",
|
204
204
|
"Picture",
|
205
205
|
"Source",
|
206
|
-
"
|
206
|
+
"Img",
|
207
207
|
"IFrame",
|
208
208
|
"Embed",
|
209
209
|
"Object",
|
@@ -447,7 +447,7 @@ from .nodes.html import (
|
|
447
447
|
Del,
|
448
448
|
Picture,
|
449
449
|
Source,
|
450
|
-
|
450
|
+
Img,
|
451
451
|
IFrame,
|
452
452
|
Embed,
|
453
453
|
Object,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|