Skip to content

Latest commit

 

History

History
477 lines (331 loc) · 13.9 KB

demo.rst

File metadata and controls

477 lines (331 loc) · 13.9 KB

Paragraph Level Markup

Table of Contents

Inline Markup

Paragraphs contain text and may contain inline markup: emphasis, strong emphasis, inline literals, standalone hyperlinks (http://www.python.org), external hyperlinks (Python), internal cross-references (example), external hyperlinks with embedded URIs (Python web site), footnote references (manually numbered1, anonymous auto-numbered2, labeled auto-numbered3, or symbolic4), citation references (5), substitution references (EXAMPLE), and _inline hyperlink targets (see Targets below for a reference back to here). Character-level inline markup is also possible (although exceedingly ugly!) in reStructuredText. Problems are indicated by text (generated by processing errors; this one is intentional).

Also with sphinx.ext.autodoc, which I use in the demo, I can link to test_py_module.test.Foo. It will link you right to my code documentation for it.

The default role for6 interpreted text is Title Reference. Here are some explicit interpreted text roles: a PEP reference (PEP 287); an RFC reference (RFC 2822); a subscript; a superscript; and explicit roles for standard inline markup.

GUI labels are a useful way to indicate that Some action is to be taken by the user. The GUI label should not run over line-height so as not to interfere with text from adjacent lines.

Key-bindings indicate that7 the read is to press a button on the keyboard or mouse, for example MMB and Shift-MMB. Another useful markup to indicate a user action is to use menuselection this8 can9 be10 used11 to12 show13 short14 and long menus in software. For example, and menuselection can be seen here that breaks is too long to fit on this line. My --> Software --> Some menu --> Some sub menu 1 --> sub menu 2.

Let's test wrapping and whitespace significance in inline literals: This is an example of --inline-literal --text, --including some-- strangely--hyphenated-words. Adjust-the-width-of-your-browser-window to see how the text is wrapped. -- ---- -------- Now note the spacing between the words of this sentence (words should be grouped in pairs).

If the --pep-references option was supplied, there should be a live link to PEP 258 here.

Very long URLs should be wrapped so lines do not overflow and cause horizontal scrolling: https://www.google.com/search?hl=en&q=very%20long%20url%20example%20of%20a%20url%20that%20is%20extremely%20long%20you%20probably%20want%20to%20avoid%20it%20but%20here%20we%20are

Math

This is a test. Here is an equation: X0 : 5 = (X0, X1, X2, X3, X4). Here is another:

$$\nabla^2 f = \frac{1}{r^2} \frac{\partial}{\partial r} \left( r^2 \frac{\partial f}{\partial r} \right) + \frac{1}{r^2 \sin \theta} \frac{\partial f}{\partial \theta} \left( \sin \theta \, \frac{\partial f}{\partial \theta} \right) + \frac{1}{r^2 \sin^2\theta} \frac{\partial^2 f}{\partial \phi^2}$$

You can add a link to equations like the one above This is a label by using :eq:.

Meta

Blocks

Literal Blocks

Literal blocks are indicated with a double-colon ("::") at the end of the preceding paragraph (over there -->). They can be indented:

if literal_block:
    text = 'is left as-is'
    spaces_and_linebreaks = 'are preserved'
    markup_processing = None

Or they can be quoted without indentation:

>> Great idea!
>
> Why didn't I think of that?

Line Blocks

This is a line block. It ends with a blank line.
    Each new line begins with a vertical bar ("|").
    Line breaks and initial indents are preserved.
Continuation lines are wrapped portions of long lines; they begin with a space in place of the vertical bar.
    The left edge of a continuation line need not be aligned with the left edge of the text above it.
This is a second line block.

Blank lines are permitted internally, but they must begin with a "|".

Take it away, Eric the Orchestra Leader!

A one, two, a one two three four

Half a bee, philosophically,
    must, ipso facto, half not be.
But half the bee has got to be,
    *vis a vis* its entity. D'you see?

But can a bee be said to be
    or not to be an entire bee,
        when half the bee is not a bee,
            due to some ancient injury?

Singing...

Block Quotes

Block quotes consist of indented body elements:

My theory by A. Elk. Brackets Miss, brackets. This theory goes as follows and begins now. All brontosauruses are thin at one end, much much thicker in the middle and then thin again at the far end. That is my theory, it is mine, and belongs to me and I own it, and what it is too.

-- Anne Elk (Miss)

Doctest Blocks

>>> print 'Python-specific usage examples; begun with ">>>"' Python-specific usage examples; begun with ">>>" >>> print '(cut and pasted from interactive Python sessions)' (cut and pasted from interactive Python sessions)

Code Blocks

# parsed-literal test curl -O http://someurl/release-|version|.tar-gz

{
"windows": [
    {
    "panes": [
        {
        "shell_command": [
            "echo 'did you know'",
            "echo 'you can inline'"
        ]
        },
        {
        "shell_command": "echo 'single commands'"
        },
        "echo 'for panes'"
    ],
    "window_name": "long form"
    }
],
"session_name": "shorthands"
}

Emphasized lines with line numbers

def some_function():
    interesting = False
    print 'This line is highlighted.'
    print 'This one is not...'
    print '...but this one is.'

Sidebar

Ch'ien / The Creative

image

Above CH'IEN THE CREATIVE, HEAVEN

Below CH'IEN THE CREATIVE, HEAVEN

The first hexagram is made up of six unbroken lines. These unbroken lines stand for the primal power, which is light-giving, active, strong, and of the spirit. The hexagram is consistently strong in character, and since it is without weakness, its essence is power or energy. Its image is heaven. Its energy is represented as unrestricted by any fixed conditions in space and is therefore conceived of as motion. Time is regarded as the basis of this motion. Thus the hexagram includes also the power of time and the power of persisting in time, that is, duration.

The power represented by the hexagram is to be interpreted in a dual sense in terms of its action on the universe and of its action on the world of men. In relation to the universe, the hexagram expresses the strong, creative action of the Deity. In relation to the human world, it denotes the creative action of the holy man or sage, of the ruler or leader of men, who through his power awakens and develops their higher nature.

Code with Sidebar

A code example

With a sidebar on the right.

test_py_module/test.py

References

Footnotes

Citations

Here's a reference to the above, [Citation], and a [nonexistent] citation.

Glossary

This is a glossary with definition terms for thing like Writing:

Documentation

Provides users with the knowledge they need to use something.

Reading

The process of taking information into ones mind through the use of eyes.

Writing

The process of putting thoughts into a medium for other people to read <Reading>.

Targets

This paragraph is pointed to by the explicit "example" target. A reference can be found under Inline Markup, above. Inline hyperlink targets are also possible.

Section headers are implicit targets, referred to by name. See Targets, which is a subsection of References.

Explicit external targets are interpolated into references such as "Python".

Targets may be indirect and anonymous. Thus this phrase may also refer to the Targets section.

Here's a hyperlink reference without a target, which generates an error.

Directives

Contents

local

These are just a sample of the many reStructuredText Directives. For others, please see: http://docutils.sourceforge.net/docs/ref/rst/directives.html.

Centered text

You can create a statement with centered text with .. centered::

This is centered text!

Images & Figures

Images

An image directive (also clickable -- a hyperlink reference):

image

Figures

A figure is an image with a caption and/or a legend:

A figure is an image with a caption and/or a legend:
re Revised, revisited, based on 're' module.
Structured Structure-enhanced text, structuredtext.
Text Well it is, isn't it?

This paragraph is also part of the legend.

A figure directive with center alignment

This caption should be centered.

This caption should be centered.

Admonitions

Attention

Directives at large.

Caution

Don't take any wooden nickels.

Danger

Mad scientist at work!

Error

Does not compute.

Hint

It's bigger than a bread box.

Important

- Wash behind your ears. - Clean up your room.

  • Including the closet.
  • The bathroom too.
    • Take the trash out of the bathroom.
    • Clean the sink.
  • Call your mother.
  • Back up your data.

Note

This is a note. Equations within a note: Gμν = 8πG(Tμν + ρΛgμν).

Tip

15% if the service is good.

Example
Thing1
Thing2
Thing3

Warning

Strong prose may provoke extreme mental exertion. Reader discretion is strongly advised.

And, by the way...

You can make up your own admonition too.

Topics, Sidebars, and Rubrics

Sidebar Title: Optional Subtitle

This is a sidebar. It is for text outside the flow of the main text.

This is a rubric inside a sidebar

Sidebars often appears beside the main text with a border and background color.

Topic Title

This is a topic.

This is a rubric

Target Footnotes

Replacement Text

I recommend you try Python, the best language around_.

Compound Paragraph

This paragraph contains a literal block:

Connecting... OK
Transmitting data... OK
Disconnecting... OK

and thus consists of a simple paragraph, a literal block, and another simple paragraph. Nonetheless it is semantically one paragraph.

This construct is called a compound paragraph and can be produced with the "compound" directive.

This long long long long long long long long long long long long long long long download link should be blue, normal weight text with a leading icon, and should wrap white-spaces <static/yi_jing_01_chien.jpg>

Citation

This is the citation I made, let's make this extremely long so that we can tell that it doesn't follow the normal responsive table stuff.


  1. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  2. This footnote is numbered automatically and anonymously using a label of "#" only.

  3. Footnotes may be numbered, either manually (as in) or automatically using a "#"-prefixed label. This footnote has a label so it can be referred to from multiple places, both as a footnote reference () and as a hyperlink reference (label).

  4. Footnotes may also use symbols, specified with a "" label. Here's a reference to the next footnote: []_.

  5. This citation has some code blocks in it, maybe some bold and italics too. Heck, lets put a link to a meta citation too.

  6. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  7. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  8. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  9. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  10. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  11. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  12. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  13. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.

  14. A footnote contains body elements, consistently indented by at least 3 spaces.

    This is the footnote's second paragraph.