SlideShare a Scribd company logo
1 of 45
Download to read offline
Introduction to
reStructuredText
Mosky
Mosky
•

A Python engineer at Pinkoi

•

An author of some Python packages
(MoSQL, Clime, ...)

•

A speaker at some conferences
(PyCon APAC, PyCon TW, COSCUP, ...)

•

A Python trainer

•

mosky.tw
reStructuredText
•

reST, RST

•

no REST
(Representational State Transfer)

•

A part of Python's Docutils

•

A Lightweight Markup Language
(like Markdown)
Installation
Installation
•

Test if you already have:

•
•

If you have pip:

•
•

rst2html.py --version

pip install docutils

Other:

•

http://docutils.sourceforge.net/
README.html#installation
Markups
Markups

•

Implicit Markups

•

Explicit Markups
Implicit Markups
•

Inline Markups

•

Blocks (4 types)

•

Section & Paragraph

•

Table (2 styles)

•

Lists (5 types)

•

Transition

•

(Formatting Markups)
Explicit Markups
•

Footnotes (2 types)

•

Directive

•

Citation

•

Substitution

•

Hyperlink Targets (4 t.)

•

Comment

•

(Dot-Dot Markups)
Implicit Markups
Inline Markups
*emphasis*

emphasis

**strong emphasis**

strong emphasis

`interpreted text`

interpreted text

``inline literal``

inline literal

*escape*, **esacpe**

*escape*, **esacpe**

A backslash literal: 

A backslash literal:
Section & Paragraph
=====
Title
=====
Subtitle
--------

Title
Subtitle
The first paragraph.

The first paragraph.

The second paragraph.

The second paragraph.

=-`:'"~^_*+#<>

=-`:'"~^_*+#<>
Lists
•

Enumerated List

•

Bullet List

•

Definition List

•

Option List
Enumerated List
A enumerated list:

A enumerated list:

3. The first item.
4. The second item.
#. The third item.

3. The first item.
4. The second item.
5. The third item.

``1.``, ``A.``, ``I.``,
``(1)``, ``1)`` are also
work.

1., A., I., (1), 1) also
work.
Bullet List
A bullet list:
- This is item 1
- This is item 2
- "-", "*" or "+".
Continuing text must
be aligned.
The two blank lines is
required.

A bullet list:

•
•
•

This is item 1
This is item 2
"-", "*" or "+".
Continuing text must be
aligned.
The two blank lines is
required.
Definition List
A definition list:

A Definition List:

Python
Python is a
programming language.

Python
Python is a programming
language.

reStructuredText
reStructuredText is a
markup syntax and
parser system.

reStructuredText
reStructuredText is a
markup syntax and
parser system.
Field List
:Author:
Mosky Liu
Thanks the Quickref
:Date: 2013/10/29

Mosky Liu
Author:
Thanks the Quickref
Date:
2013/10/29
Option List
-a     

opt
and long desc
-b file  opt with arg
--long   long opt

-a
-b
--long

opt and long dec
opt with arg
long opt
Blocks
•

Literal Block

•

Line Block

•

Block Quote

•

Doctest Block
Literal Block
A literal block:
::
  Everything will be
kept here.
Out of the literal
block.

A literal block:
Everything will be
kept here.

Out of the literal block.
Literal Block
A literal block: ::
  Everything will be
kept here.
Out of the literal
block.

A literal block:
Everything will be
kept here.

Out of the literal block.
Line Block
A line block:

A line block:

| Line breaks and
|
initial indents
| are preserved.

Line breaks and
initial indents
are preserved.
Block Quote
Block quotes are just:
    Indented paragraphs.

Block quotes are just:
Indented paragraphs.
Doctest Block
A doctest block:

A doctest block:

>>> print "Hey!"
Hey!

>>> print "Hey!"
Hey!
Table
•

Grid Table

•

Simple Table

•

These are styles of table.
Grid Table
A grid table:
+----------+----------+
| Header 1 | Header 2 |
+==========+==========+
| Column 1 | Column 2 |
+----------+----------+
| Spanned Column
|
+---------------------+

A grid table:

Header 1
Column 1

Header 2
Column 2

Spanned Column
Simple Table
A simple table:
======== ========
Header 1 Header 2
======== ========
Column 1 Column 2
-------- -------Spanned Column
==================

A simple table:

Header 1
Column 1

Header 2
Column 2

Spanned Column
Transition
4 or more punctuation
chars.
---No begin or end a sect
or doc.

4 or more punctuation
chars.
No begin or end a sect
or doc.
Explicit Markups
Footnotes

•

Numerical Footnote

•

Symbol Footnote
Numerical Footnote
PyHUG [1]_ and Taipei.py [2]_ are both the Python
user groups in Taiwan.
.. [1] http://www.meetup.com/pythonhug/
.. [2] http://taipei.python.org.tw/

PyHUG [1] and Taiepi.py [2] both are the Python user groups in
Taiwan.
[1] http://www.meetup.com/pythonhug/
[2] http://taipei.python.org.tw/
Numerical Footnote
PyHUG [#]_ and Taipei.py [#]_ are both the Python
user groups in Taiwan.
.. [#] http://www.meetup.com/pythonhug/
.. [#] http://taipei.python.org.tw/

PyHUG [1] and Taiepi.py [2] both are the Python user groups in
Taiwan.
[1] http://www.meetup.com/pythonhug/
[2] http://taipei.python.org.tw/
Symbol Footnote
PyHUG [*]_ and Taipei.py [*]_ are both the Python
user groups in Taiwan.
.. [*] http://www.meetup.com/pythonhug/
.. [*] http://taipei.python.org.tw/

PyHUG [*] and Taiepi.py [†] both are the Python user groups in
Taiwan.
[*] http://www.meetup.com/pythonhug/
[†] http://taipei.python.org.tw/
Citation
[PyHUG]_ and [Taipei.py]_ are both the Python user
groups in Taiwan.
.. [PyHUG]
http://www.meetup.com/pythonhug/
.. [Taiepi.py] http://taipei.python.org.tw/

[PyHUG] and [Taiepi.py] both are the Python user groups in
Taiwan.
[PyHUG] http://www.meetup.com/pythonhug/
[Taipei.py] http://taipei.python.org.tw/
Hyperlink Targets
•

External

•

Internal

•

Indirect

•

Implicit
External
Hyperlink Target
PyHUG_ and Taipei.py_ are both the `Python <http://
python.org/>`_ user groups in Taiwan.
.. _PyHUG:
http://www.meetup.com/pythonhug/
.. _Taiepi.py: http://taipei.python.org.tw/

PyHUG and Taiepi.py both are the Python user groups in
Taiwan.
Internal
Hyperlink Target
PyHUG_ and Taipei.py_ are both the Python user groups
in Taiwan.
.. _PyHUG:
PyHUG is ...
.. _Taiepi.py:
Taipei.py is ...

PyHUG and Taiepi.py both are the Python user groups in
Taiwan.
Indirect
Hyperlink Target
Python_ is `my favourite programming language`__.
.. _Python: http://www.python.org/
__ Python_

Python is my favourite programming language.
Implicit
Hyperlink Target
Titles are targets, too
=======================
Implict references, like `Titles are targets, too`_.

Title are targets, too
Implict references, like Titles are targets, too.
Directive
PyHUG's logo:
.. image:: pyhug.jpg

PyHUG's logo:
Substitution
PyHUG's logo: |pyhug|
.. |pyhug| image:: pyhug.jpg

PyHUG's logo:
Comment
PyHUG and Taipei.py are both the Python user groups
in Taiwan.
.. TODO: Put Tainan.py in this paragraph.

PyHUG and Taipei.py are both the Python user groups in
Taiwan.
Links
Links
•

Quick reStructuredText
http://docutils.sourceforge.net/docs/user/rst/quickref.html

•

reStructuredText Directives
http://docutils.sourceforge.net/docs/ref/rst/directives.html

•

Sphinx
http://sphinx-doc.org/

•

Markdown
http://markdown.tw/
Any Question?

More Related Content

Viewers also liked

Education in Japan
Education in JapanEducation in Japan
Education in Japan
Darcidai
 
Special needs education powerpoint educ100
Special needs education powerpoint educ100Special needs education powerpoint educ100
Special needs education powerpoint educ100
randeepsohal
 
Types of Disabilities
Types of DisabilitiesTypes of Disabilities
Types of Disabilities
Stefy Angel
 

Viewers also liked (12)

Graph-Tool in Practice
Graph-Tool in PracticeGraph-Tool in Practice
Graph-Tool in Practice
 
Learning Python from Data
Learning Python from DataLearning Python from Data
Learning Python from Data
 
Programming with Python - Basic
Programming with Python - BasicProgramming with Python - Basic
Programming with Python - Basic
 
Simple Belief - Mosky @ TEDxNTUST 2015
Simple Belief - Mosky @ TEDxNTUST 2015Simple Belief - Mosky @ TEDxNTUST 2015
Simple Belief - Mosky @ TEDxNTUST 2015
 
Educational system in japan
Educational system in japanEducational system in japan
Educational system in japan
 
Education in japan
Education in japanEducation in japan
Education in japan
 
Japan's Educational System
Japan's Educational SystemJapan's Educational System
Japan's Educational System
 
Education in Japan
Education in JapanEducation in Japan
Education in Japan
 
Educational System of Japan
Educational System of JapanEducational System of Japan
Educational System of Japan
 
Children with disabilities
Children with disabilities Children with disabilities
Children with disabilities
 
Special needs education powerpoint educ100
Special needs education powerpoint educ100Special needs education powerpoint educ100
Special needs education powerpoint educ100
 
Types of Disabilities
Types of DisabilitiesTypes of Disabilities
Types of Disabilities
 

More from Mosky Liu

More from Mosky Liu (8)

Statistical Regression With Python
Statistical Regression With PythonStatistical Regression With Python
Statistical Regression With Python
 
Practicing Python 3
Practicing Python 3Practicing Python 3
Practicing Python 3
 
Data Science With Python
Data Science With PythonData Science With Python
Data Science With Python
 
Hypothesis Testing With Python
Hypothesis Testing With PythonHypothesis Testing With Python
Hypothesis Testing With Python
 
Elegant concurrency
Elegant concurrencyElegant concurrency
Elegant concurrency
 
Dive into Pinkoi 2013
Dive into Pinkoi 2013Dive into Pinkoi 2013
Dive into Pinkoi 2013
 
MoSQL: More than SQL, but Less than ORM @ PyCon APAC 2013
MoSQL: More than SQL, but Less than ORM @ PyCon APAC 2013MoSQL: More than SQL, but Less than ORM @ PyCon APAC 2013
MoSQL: More than SQL, but Less than ORM @ PyCon APAC 2013
 
MoSQL: More than SQL, but less than ORM
MoSQL: More than SQL, but less than ORMMoSQL: More than SQL, but less than ORM
MoSQL: More than SQL, but less than ORM
 

Recently uploaded

Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
VictoriaMetrics
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
masabamasaba
 

Recently uploaded (20)

WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - Keynote
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 

Introduction to reStructuredText