... | ... | @@ -16,27 +16,3 @@ VFLIB |
|
|
library for graph isomorphism
|
|
|
standard make is working
|
|
|
|
|
|
```javascript
|
|
|
var s = "JavaScript syntax highlighting";
|
|
|
alert(s);
|
|
|
```
|
|
|
|
|
|
```python
|
|
|
def function():
|
|
|
#indenting works just fine in the fenced code block
|
|
|
s = "Python syntax highlighting"
|
|
|
print s
|
|
|
```
|
|
|
|
|
|
```ruby
|
|
|
require 'redcarpet'
|
|
|
markdown = Redcarpet.new("Hello World!")
|
|
|
puts markdown.to_html
|
|
|
```
|
|
|
|
|
|
```
|
|
|
No language indicated, so no syntax highlighting.
|
|
|
s = "There is no highlighting for this."
|
|
|
But let's throw in a <b>tag</b>.
|
|
|
```
|
|
|
|