legal-markdown-js 1.2.0 → 1.3.0
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.
- package/README.md +6 -0
- package/dist/web/index.html +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,6 +34,12 @@ processing legal documents with structured markdown and YAML front matter.
|
|
|
34
34
|
npm install legal-markdown-js
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
+
## 🚀 Try it Online
|
|
38
|
+
|
|
39
|
+
**[Live Playground](https://petalo.github.io/legal-markdown-js/)** - Try Legal
|
|
40
|
+
Markdown JS directly in your browser with live examples and real-time
|
|
41
|
+
processing.
|
|
42
|
+
|
|
37
43
|
## Quick Start
|
|
38
44
|
|
|
39
45
|
### Command Line Usage
|
package/dist/web/index.html
CHANGED
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
<header class="app-header">
|
|
14
14
|
<h1>Legal Markdown JS - Playground</h1>
|
|
15
15
|
<div class="header-actions">
|
|
16
|
+
<a href="https://github.com/petalo/legal-markdown-js" target="_blank" rel="noopener noreferrer" class="repo-link" title="View project repository">
|
|
17
|
+
📋 Repository
|
|
18
|
+
</a>
|
|
16
19
|
<button class="theme-toggle" title="Toggle theme">🌙</button>
|
|
17
20
|
<button class="help-btn" title="Help">❓</button>
|
|
18
21
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "legal-markdown-js",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|