Add README and LICENSE

This commit is contained in:
orosmatthew 2023-10-03 09:47:40 -04:00
parent d9f9c4b268
commit d2e4944584
4 changed files with 13 additions and 34 deletions

7
LICENSE.txt Normal file
View File

@ -0,0 +1,7 @@
MIT No Attribution
Copyright 2023-present Matthew Oros
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

6
README.md Normal file
View File

@ -0,0 +1,6 @@
# Markdown Parser (Kotlin)
> NOTE: only for education purposes
Very simple and limited markdown to html parser for learning Kotlin

View File

@ -1,32 +0,0 @@
<h1>Heading 1</h1>
<br />
<h2>Heading 2</h2>
<br />
<h3>Heading 3</h3>
<br />
This is some regular text *ITALICS*<br />
<b>This is some bold text</b><br />
<br />
<br />
<br />
<i>This is some italicized text</i><br />
<blockquote>This is a block quote</blockquote>
<hr />
<hr />
<hr />

View File

@ -7,8 +7,6 @@
This is some regular text *ITALICS*
**This is some bold text**
*This is some italicized text*
> This is a block quote
- - -