voxmark 1.0.0__py3-none-any.whl
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.
- voxmark/__init__.py +23 -0
- voxmark/__main__.py +846 -0
- voxmark/app.py +152 -0
- voxmark/compiler.py +956 -0
- voxmark/examples.py +450 -0
- voxmark/firewall.py +291 -0
- voxmark/language.py +2774 -0
- voxmark/lexer.py +324 -0
- voxmark/parser.py +363 -0
- voxmark/renderer.py +482 -0
- voxmark/style.css +2071 -0
- voxmark/wasm_encoder.py +401 -0
- voxmark-1.0.0.dist-info/METADATA +539 -0
- voxmark-1.0.0.dist-info/RECORD +18 -0
- voxmark-1.0.0.dist-info/WHEEL +5 -0
- voxmark-1.0.0.dist-info/entry_points.txt +2 -0
- voxmark-1.0.0.dist-info/licenses/LICENSE.txt +21 -0
- voxmark-1.0.0.dist-info/top_level.txt +1 -0
voxmark/__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
VoxMark — Markdown + VML Interactive Document Engine
|
|
3
|
+
Author: Divyanshu Sinha
|
|
4
|
+
Version: 1.0.0
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = '1.0.0'
|
|
8
|
+
__author__ = 'Divyanshu Sinha'
|
|
9
|
+
__email__ = 'divyanshu.sinha631@gmail.com'
|
|
10
|
+
|
|
11
|
+
from .app import create_app
|
|
12
|
+
from .renderer import render
|
|
13
|
+
from .language import transform_vml
|
|
14
|
+
from .lexer import Lexer, Token, TK
|
|
15
|
+
from .parser import Parser, Document, Widget, TextNode, VarRef, parse
|
|
16
|
+
from .compiler import compile_vml, HTMLCompiler, CSSCompiler, WASMCompiler, CompileResult
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'create_app', 'render', 'transform_vml',
|
|
20
|
+
'Lexer', 'Token', 'TK',
|
|
21
|
+
'Parser', 'Document', 'Widget', 'TextNode', 'VarRef', 'parse',
|
|
22
|
+
'compile_vml', 'HTMLCompiler', 'CSSCompiler', 'WASMCompiler', 'CompileResult',
|
|
23
|
+
]
|