這篇文章旨在作為快速參考與展示。要更多完整的資訊,請見 John Gruber 原本的規格與 Github 偏好的 Markdown(Github-flavored Markdown,簡寫為GFM)資訊頁。
如果你正在找 Markdown Here 的小抄(Cheatsheet),這裡也有一篇。你也可以看看更多 Markdown 的工具。
譯註:可以參考這份中文版文件,有更詳盡的 Markdown 語法說明;如果需要可以練習的線上編輯器,可以試試看HackMD。
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |
這篇文章旨在作為快速參考與展示。要更多完整的資訊,請見 John Gruber 原本的規格與 Github 偏好的 Markdown(Github-flavored Markdown,簡寫為GFM)資訊頁。
如果你正在找 Markdown Here 的小抄(Cheatsheet),這裡也有一篇。你也可以看看更多 Markdown 的工具。
譯註:可以參考這份中文版文件,有更詳盡的 Markdown 語法說明;如果需要可以練習的線上編輯器,可以試試看HackMD。
| #include <iostream> | |
| using namespace std; | |
| int main() { | |
| long long number; | |
| cin >> number; | |
| int oddSum = 0; | |
| int evenSum = 0; |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| <?php | |
| // 省略... | |
| Route::get('mails/user', function () { | |
| $markdown = new Illuminate\Mail\Markdown(view(), config('mail.markdown')); | |
| $user = \App\User::first(); | |
| return $markdown->render('mails.user', [ | |
| 'user' => $user, |
| #include <iostream> | |
| using namespace std; | |
| int main(void) { | |
| string s; | |
| cout << "Input: "; | |
| cin >> s; | |
| cout << "Output: "; | |
| for (int i = 0; i < s.length(); i++) |
| #include <iostream> | |
| using namespace std; | |
| int main(void) { | |
| // 取得使用者的分數 | |
| int score1, score2, score3; | |
| cout << "Score 1:"; | |
| cin >> score1; | |
| cout << "Score 2:"; |
| { | |
| "auto-close-tag.fullMode": true, | |
| "blade.format.enable": true, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 18, | |
| "editor.formatOnPaste": true, | |
| "editor.lineHeight": 32, | |
| "editor.renderIndentGuides": false, | |
| "editor.renderWhitespace": "boundary", |
| find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo [{}] && cd {} && git log -1 --oneline --format="%C(auto) %h %s (%cr)")' \; |
| /.vscode/* | |
| !/.vscode/extensions.json |