Skip to content

Commit 2416a9b

Browse files
committed
Made into an independent repository.
- Added `.editorconfig`, `.gitignore`. - Modified paths in `Makefile`, `README.md`. - Added `tools` directory. - Added copy of `spec.txt`.
1 parent 295353f commit 2416a9b

7 files changed

+7400
-3
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
end_of_line = lf
7+
charset = utf-8
8+
insert_final_newline = true
9+
10+
[*.js]
11+
trim_trailing_whitespace = true
12+
indent_style = space
13+
indent_size = 2
14+
15+
[Makefile]
16+
trim_trailing_whitespace = true
17+
indent_style = tab
18+
indent_size = 8

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*~
2+
*.bak
3+
*.diff
4+
*#

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ suitable for linking into a web page, or just fetch
2929

3030
To run tests for the JavaScript library:
3131

32-
make testjs
32+
make test
3333

3434
To run benchmarks against some other JavaScript converters:
3535

36-
npm install showdown marked markdown-it
37-
make benchjs
36+
npm install benchmark showdown marked markdown-it
37+
make bench
3838

3939
To start an interactive dingus that you can use to try out
4040
the library:

0 commit comments

Comments
 (0)