Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
Compile wikitext into HTML
  • Loading branch information
Nixinova committed Mar 27, 2021
0 parents commit 5f875c4
Show file tree
Hide file tree
Showing 16 changed files with 7,331 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# General
* text=auto

# Project
package-lock.json -diff

# Linguist
*.ts linguist-language=TypeScript
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
_site/
node_modules/
wikity-out/

src/*.js
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
wikity-out/
test/
src/*.ts
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## 1.0.0
*2021-03-27*
- Added `compile()` function and CLI command to compile wikitext into HTML.
15 changes: 15 additions & 0 deletions license.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ISC License

Copyright © 2021 Nixinova

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

The software is provided "as is" and the author disclaims all warranties
with regard to this software including all implied warranties of
merchantability and fitness. In no event shall the author be liable for
any special, direct, indirect, or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether in an
action of contract, negligence or other tortious action, arising out of
or in connection with the use or performance of this software.
Loading

0 comments on commit 5f875c4

Please sign in to comment.