first commit

This commit is contained in:
2026-01-25 18:18:09 +08:00
commit 509312e604
8136 changed files with 2349298 additions and 0 deletions

View File

@ -0,0 +1,40 @@
GitHub Flavored Markdown
========================
Multiple underscores in words
-----------------------------
do_this_and_do_that_and_another_thing
URL autolinking
---------------
http://example.com
Strikethrough
-------------
~~Mistaken text.~~
Fenced code blocks
------------------
```
function test() {
console.log("notice the blank line before this function?");
}
```
Syntax highlighting
-------------------
```ruby
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
```
~~~
this is also code
~~~