-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added markdown test (to become Rocket)
- Loading branch information
1 parent
4700a1f
commit 12eaa3d
Showing
6 changed files
with
48 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -243,4 +243,6 @@ namespace encoding { | |
void md_to_html(WrenVM* vm); | ||
} | ||
|
||
|
||
|
||
} // namespace lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import "std/encoding" for Markdown | ||
import "std/fs" for Fs, Path | ||
|
||
var files = Fs.listAllRecursive(Fs.cwd()) | ||
|
||
// List of markdown files in the directory | ||
var mdFiles = [] | ||
|
||
for (i in files) { | ||
if (Path.ext(i) == "md") { | ||
System.print(i) | ||
mdFiles.add(i) | ||
} | ||
} | ||
|
||
System.print(mdFiles.count) |