Highlight Test 发表于 2017-07-19 | 分类于 test This is a highlight test. Normal block 1alert('Hello World!'); 1print 'helloworld' Highlight block 1alert( 'Hello, world!' ); 1print 'helloworld' 123def foo puts 'foo' end def foo puts 'foo' end 1 2 3 4 z def foo puts 'foo' end 12345678910111213141516#include <iostream> using namespace std; void foo(int arg1, int arg2) { } int main() { string str; foo(1, 2); cout << "Hello World" << endl; return 0; }