Table of Contents¶
General showcase for rST¶
This is the target for a ref at the bottom of the page.
Warning
Here be dragons! This topic covers a number of options that might alter your database.
Proceed with caution!
Check out :jira:`199` for information on the :toy:`jump-rope`. There is a fix in our :unit-test:`assert-jump-rope-length`.
This is how you point to the reference on top of this page, reference-target-name
Table inserted as a csv¶
Treat | Quantity | Description |
---|---|---|
Albatross | 2.99 | On a stick! |
Popcorn | 1.99 | Straight from the oven |
Code sample with highligted lines¶
module Jekyll
module AsciiEncodeFilter
def ascii_encode(input)
input.nil? ? input : input.chars.map { |c| /[a-zA-Z0-9]/.match(c) ? c : c.ord }.join
end
end
Image included from an image store folder¶
Python code example with linenumbers inserted¶
1 2 3 4 | import antigravity
def main():
antigravity.fly()
|