@podlite/markdown 0.0.4 → 0.0.6

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/CHANGELOG.md CHANGED
@@ -1,9 +1,25 @@
1
1
  # @podlite/markdown
2
+
3
+ ## 0.0.6
4
+
5
+ - refactor tests
6
+
7
+ ## 0.0.5
8
+
9
+ - refactor
10
+
2
11
  ## 0.0.4
12
+
3
13
  - fix export
14
+
4
15
  ## 0.0.3
16
+
5
17
  - update deps
18
+
6
19
  ## 0.0.2
20
+
7
21
  - update build
22
+
8
23
  ## 0.0.1
24
+
9
25
  - initial release
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Alexandr Zahatski
3
+ Copyright © 2022-2024 Aliaksandr Zahatski
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,15 +1,41 @@
1
- # =Markdown block
1
+ # @podlite/editor-react
2
2
 
3
- ## Contributing
3
+ <div align="center">
4
4
 
5
- This is an open source program. Feel free to fork and contribute.
5
+ [![Podlite](https://github.com/zag/specs/raw/podlite-specification/assets/podlite_logo_256x256.png)](https://podlite.org)
6
6
 
7
- In order to keep the match between this documentation and the last release, please contribute and pull requests on the dedicated develop branch.
7
+ </div>
8
+
9
+ **Podlite is a lightweight block-based markup language designed for flexibility and ease of use.**
10
+
11
+ 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.
12
+
13
+ Podlite is not limited to any specific application domain, programming language, or concept.
14
+
15
+ In addition, the support for Markdown markup as a standard block adds convenience and allows for the use of familiar syntax for text formatting.
16
+
17
+ 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.
18
+
19
+ Its flexibility makes it an ideal tool for creating documentation, blogs, educational materials, and much more.
20
+
21
+ 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.
22
+
23
+ ## Useful links
24
+
25
+ 📖 _Project site_: [podlite.org](https://podlite.org)
26
+
27
+ 📌 _Github_: [github.com/podlite](https://github.com/podlite/) 🤩
28
+
29
+ 🖥️ _Online editor_: [pod6.in](https://pod6.in/)
30
+
31
+ 🖥️ _Desktop editor/viewer_: [github.com/podlite/podlite-desktop](https://github.com/podlite/podlite-desktop) - the viewer and editor of `.podlite` and `.pod6` files for Windows, Linux and Mac.
32
+
33
+ 📚 _Podlite for web_ - static site generator: [github.com/podlite/podlite-web](https://github.com/podlite/podlite-web)
8
34
 
9
35
  ## AUTHOR
10
36
 
11
- Copyright (c) 2022 Alexandr Zahatski
37
+ Copyright (c) 2022-2024 Aliaksandr Zahatski
12
38
 
13
39
  ## License
14
40
 
15
- Released under a MIT License.
41
+ Released under a MIT License.
package/index.js CHANGED
@@ -1,2 +1,2 @@
1
1
  'use strict'
2
- module.exports = require('./lib')
2
+ module.exports = require('./lib')
package/jest.config.js CHANGED
@@ -1,2 +1 @@
1
-
2
1
  module.exports = require('../../jest.config')
@@ -1 +1 @@
1
- {"extends": "../../jest.tsconfig.json"}
1
+ { "extends": "../../jest.tsconfig.json" }