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

Graph-Tool in Practice
Graph-Tool in PracticeGraph-Tool in Practice
Graph-Tool in PracticeMosky Liu
 
Learning Python from Data
Learning Python from DataLearning Python from Data
Learning Python from DataMosky Liu
 
Programming with Python - Basic
Programming with Python - BasicProgramming with Python - Basic
Programming with Python - BasicMosky Liu
 
Simple Belief - Mosky @ TEDxNTUST 2015
Simple Belief - Mosky @ TEDxNTUST 2015Simple Belief - Mosky @ TEDxNTUST 2015
Simple Belief - Mosky @ TEDxNTUST 2015Mosky Liu
 
Educational system in japan
Educational system in japanEducational system in japan
Educational system in japanchiriter
 
Japan's Educational System
Japan's Educational SystemJapan's Educational System
Japan's Educational SystemKhatski Taborada
 
Education in Japan
Education in JapanEducation in Japan
Education in JapanDarcidai
 
Children with disabilities
Children with disabilities Children with disabilities
Children with disabilities Soha Rashed
 
Special needs education powerpoint educ100
Special needs education powerpoint educ100Special needs education powerpoint educ100
Special needs education powerpoint educ100randeepsohal
 
Types of Disabilities
Types of DisabilitiesTypes of Disabilities
Types of DisabilitiesStefy 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

Statistical Regression With Python
Statistical Regression With PythonStatistical Regression With Python
Statistical Regression With PythonMosky Liu
 
Practicing Python 3
Practicing Python 3Practicing Python 3
Practicing Python 3Mosky Liu
 
Data Science With Python
Data Science With PythonData Science With Python
Data Science With PythonMosky Liu
 
Hypothesis Testing With Python
Hypothesis Testing With PythonHypothesis Testing With Python
Hypothesis Testing With PythonMosky Liu
 
Elegant concurrency
Elegant concurrencyElegant concurrency
Elegant concurrencyMosky Liu
 
Dive into Pinkoi 2013
Dive into Pinkoi 2013Dive into Pinkoi 2013
Dive into Pinkoi 2013Mosky Liu
 
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 2013Mosky Liu
 
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 ORMMosky 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

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 2024VictoriaMetrics
 
%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 Benonimasabamasaba
 
%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 tembisamasabamasaba
 
%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 tembisamasabamasaba
 
%+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
 
+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
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
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?WSO2
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
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...WSO2
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
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...SelfMade bd
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationJuha-Pekka Tolvanen
 
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-learnAmarnathKambale
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
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 SourceWSO2
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...masabamasaba
 

Recently uploaded (20)

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
 
%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
 
%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
 
%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
 
%+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...
 
+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...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
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?
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
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...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
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...
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
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
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
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
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 

Introduction to reStructuredText