@rokelamen/md2html 0.1.1 → 0.1.3

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 CHANGED
@@ -2,3 +2,11 @@
2
2
 
3
3
  A simple markdown-html conventer written in Typescript.
4
4
 
5
+ > I create this project for learning TS and node dev, not for the purpose of building another better markdown parse engine.
6
+
7
+ ## Development Log
8
+
9
+ Why I choose to use [`rollup`](https://rollupjs.org/)?
10
+
11
+ A: 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.
12
+