--- layout: default permalink: /test.html title: Test --- # This is a test This is a test ============== __________________________________ **kramdown comment** {::comment} hello world {:/comment} **liquid comment** {% comment %} hell world {% endcomment %} **html comment** **markdown comments** [//]: # (comment) [//]: # "comment" __________________________________ [Google](https://www.google.com/){: target="_blank"} Google __________________________________ ``` # code ``` `code` # syntax highlighting ## markdown method ```ruby print "Hello World" ``` ```python print "hello" ``` ## kramdown method ~~~ruby puts "hello world" ~~~ ## liquid method {% highlight ruby %} puts "ruby" {% endhighlight %}