podlite 0.0.49 → 0.0.51

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.
Files changed (2) hide show
  1. package/README.md +23 -40
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,24 +1,14 @@
1
- <div align="center">
2
-
3
- [![Podlite](https://github.com/zag/specs/raw/podlite-specification/assets/podlite_logo_256x256.png)](https://podlite.org)
4
-
5
- </div>
6
-
7
- **Podlite is a lightweight block-based markup language designed for flexibility and ease of use.**
8
-
9
- Unbound by any specific domain, programming language, or concept, Podlite stands out as a universal markup language. It's versatile enough to be successfully implemented across various development fields, from web development to scientific research.
10
-
11
- Podlite is not limited to any specific application domain, programming language, or concept.
12
-
13
- In addition, the support for Markdown markup as a standard block adds convenience and allows for the use of familiar syntax for text formatting.
14
-
15
- One of the key features of Podlite is its extensibility. This allows for defining unique and domain-specific blocks and expanding the language's functionality according to the requirements of your project.
16
-
17
- Its flexibility makes it an ideal tool for creating documentation, blogs, educational materials, and much more.
18
-
19
- Podlite aims to provide users with a means for creativity and expressing ideas in a structured form, while ensuring ease of use and high flexibility in content creation.
20
-
21
- ## Useful links
1
+ <p align="center">
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/podlite/podlite/main/assets/podlite-mark-core-dark.svg">
4
+ <img src="https://raw.githubusercontent.com/podlite/podlite/main/assets/podlite-mark-core.svg" width="350" alt="podlite">
5
+ </picture>
6
+ </p>
7
+ <p align="center"><em>Podlite markup language parser — Markdown-compatible, with native support for diagrams, formulas, and custom blocks</em></p>
8
+
9
+ ```sh
10
+ npm install podlite
11
+ ```
22
12
 
23
13
  <div align="center">
24
14
  <table border=0><tr><td valign=top><div align="center">
@@ -28,7 +18,7 @@ Podlite aims to provide users with a means for creativity and expressing ideas i
28
18
  </div>
29
19
 
30
20
  - [Source](https://github.com/podlite/podlite-specs)
31
- - [in HTML](https://podlite.org/specification)
21
+ - [HTML](https://podlite.org/specification)
32
22
  - [Discussions](https://github.com/podlite/podlite-specs/discussions)
33
23
 
34
24
  <div align="center">
@@ -43,48 +33,41 @@ Podlite aims to provide users with a means for creativity and expressing ideas i
43
33
 
44
34
  </td><td valign=top><div align="center">
45
35
 
46
- ##### publishing system
36
+ ##### publishing
47
37
 
48
38
  </div>
49
39
 
50
40
  - [Podlite-web](https://github.com/podlite/podlite-web)
51
41
  - [How-to article](https://zahatski.com/2022/8/23/1/start-you-own-blog-site-with-podlite-for-web)
52
- - [Issues](https://github.com/podlite/podlite-specs/issues)
53
42
  - [Changelog](https://github.com/podlite/podlite-web/releases)
54
- - [Practical case: Raku knowledge base ](https://raku-knowledge-base.podlite.org/)
55
43
 
56
44
  </td><td valign=top><div align="center">
57
-
58
- ##### desktop viewer/editor
45
+
46
+ ##### desktop editor
59
47
 
60
48
  </div>
61
49
 
62
- - [Podlite-desktop](https://github.com/podlite/podlite-desktop)
63
50
  - [Releases](https://github.com/podlite/podlite-desktop/releases)
64
51
  - [Issues](https://github.com/podlite/podlite-desktop/issues)
65
- - Stores:
66
- - [Linux](https://snapcraft.io/podlite)
67
- - [Windows](https://www.microsoft.com/store/apps/9NVNT9SNQJM8)
68
- - [Mac App](https://apps.apple.com/us/app/podlite/id1526511053)
52
+ - Stores: [Mac](https://apps.apple.com/us/app/podlite/id1526511053) · [Windows](https://www.microsoft.com/store/apps/9NVNT9SNQJM8) · [Linux](https://snapcraft.io/podlite)
53
+
69
54
  </td><td valign=top><div align="center">
70
55
 
71
- ##### online resurces
56
+ ##### resources
72
57
 
73
- </div>
58
+ </div>
74
59
 
75
- - [Roadmap](https://podlite.org/#Roadmap)
76
- - [github.com/podlite](https://github.com/podlite/)&nbsp;🤩
77
60
  - [podlite.org](https://podlite.org)
78
61
  - [pod6.in](https://pod6.in/)
79
- - [Podlite project updates](https://podlite.org/contents)
80
- - [Funding the ongoing development](https://opencollective.com/podlite)
62
+ - [github.com/podlite](https://github.com/podlite/)
63
+ - [Funding](https://opencollective.com/podlite)
81
64
 
82
65
  </td></tr></table>
83
66
  </div>
84
67
 
85
- ## AUTHOR
68
+ ## Author
86
69
 
87
- Copyright (c) 2021-2025 Aliaksandr Zahatski
70
+ Copyright (c) 2021–2026 Aliaksandr Zahatski
88
71
 
89
72
  ## License
90
73
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "podlite",
3
- "version": "0.0.49",
3
+ "version": "0.0.51",
4
4
  "description": "Podlite markup language parser — Markdown-compatible, with native support for diagrams, formulas, and custom blocks",
5
5
  "homepage": "https://podlite.org",
6
6
  "repository": {
@@ -49,12 +49,12 @@
49
49
  "url": "https://github.com/podlite/podlite/issues"
50
50
  },
51
51
  "dependencies": {
52
- "@podlite/diagram": "^0.0.40",
53
- "@podlite/formula": "0.0.18",
54
- "@podlite/image": "^0.0.35",
55
- "@podlite/markdown": "0.0.29",
56
- "@podlite/schema": "^0.0.36",
57
- "@podlite/toc": "0.0.29",
52
+ "@podlite/diagram": "^0.0.42",
53
+ "@podlite/formula": "0.0.20",
54
+ "@podlite/image": "^0.0.37",
55
+ "@podlite/markdown": "0.0.31",
56
+ "@podlite/schema": "^0.0.38",
57
+ "@podlite/toc": "0.0.31",
58
58
  "nanoid": "3.1.30"
59
59
  },
60
60
  "devDependencies": {