diff options
author | Aaron O'Mullan <aaron.omullan@friendco.de> | 2014-03-30 22:30:30 -0700 |
---|---|---|
committer | Aaron O'Mullan <aaron.omullan@friendco.de> | 2014-03-30 22:30:30 -0700 |
commit | 9284eb4115a38d1a45f12b343a4bf9a4cae90331 (patch) | |
tree | 921a8177a0a6fdae48680e74c6351ac8341ba144 /test/fixtures | |
parent | cfbdadd6e412ae7affbf23f11a9de6a938b1a74b (diff) | |
download | gitbook-9284eb4115a38d1a45f12b343a4bf9a4cae90331.zip gitbook-9284eb4115a38d1a45f12b343a4bf9a4cae90331.tar.gz gitbook-9284eb4115a38d1a45f12b343a4bf9a4cae90331.tar.bz2 |
Add basic page tests
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/PAGE.MD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/fixtures/PAGE.MD b/test/fixtures/PAGE.MD new file mode 100644 index 0000000..79fc10c --- /dev/null +++ b/test/fixtures/PAGE.MD @@ -0,0 +1,30 @@ +# Python basics + +Python is a nice language, you can add stuff. Bla bla bla. + +Lets jump into an exercise : + +--- + +It's dead simple, `c` must be the sum of `a` and `b` + +```py +a = 1 +b = 2 +``` + +```py +a = 1 +b = 2 +c = a + b +``` + +```py +assert(c, 3) +``` + +--- + +Some more nice content .... + +[Cool stuff](http://gitbook.io) |