Skip to content

Commit

Permalink
🎉 rust + comrak for md parse
Browse files Browse the repository at this point in the history
  • Loading branch information
whoisryosuke committed Oct 3, 2022
0 parents commit d246bec
Show file tree
Hide file tree
Showing 5 changed files with 798 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
19 changes: 19 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": ["$rustc"],
"group": "build",
"label": "rust: cargo build"
},
{
"type": "cargo",
"command": "run",
"problemMatcher": ["$rustc"],
"group": "build",
"label": "rust: cargo run"
}
]
}
Loading

0 comments on commit d246bec

Please sign in to comment.