pencil-1.0.0: examples/Blog/site/blog/2018-01-30-code-related-stuff.markdown
<!--PREAMBLE
date: 2018-01-30
postTitle: "Code related stuff"
tags:
- awesome
-->
This shows code-related stuff! A cool `variable`.
```python
import unittest
class TestSomething(unittest.TestCase):
def test1(self):
self.assert_(True)
if __name__ == '__main__':
unittest.main()
```