@rokelamen/md2html 0.1.0 → 0.1.2
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 +10 -0
- package/bin/cli.cjs +4386 -0
- package/dist/index.js +6 -10
- package/package.json +27 -14
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# md2html
|
|
2
|
+
|
|
3
|
+
A simple markdown-html conventer written in Typescript.
|
|
4
|
+
|
|
5
|
+
## Development Log
|
|
6
|
+
|
|
7
|
+
Why I choose to use `rollup`?
|
|
8
|
+
|
|
9
|
+
A: I find that every time I `import` a module, I have to add extension to the module file and it is probably a `.js` ranther than `.ts`. It's wired that I must `import` a future JS file. So I decided to use a build tool(`rollup` of course) to pack all files together, which eliminates all `import` statements.
|
|
10
|
+
|