Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ismailsunni/sphinxtutorial
Repository for Sphinx Tutorial
https://github.com/ismailsunni/sphinxtutorial
Last synced: about 2 months ago
JSON representation
Repository for Sphinx Tutorial
- Host: GitHub
- URL: https://github.com/ismailsunni/sphinxtutorial
- Owner: ismailsunni
- Created: 2013-04-08T03:04:33.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-08T03:21:45.000Z (almost 12 years ago)
- Last Synced: 2024-06-13T13:48:30.983Z (7 months ago)
- Size: 109 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Restructured Text Primer
========================Basic markup
------------Bold and Italics
................This is how you write **bold**.
This is how you write *italics*.
This is how you do a hyperlink: http://google.com
For RST reference: http://docutils.sourceforge.net/rst.html
Bullets
.......A bullet list:
* Item foo
* Item barA numbered list:
#. Item one
#. Item twoTables
......Here is how to make a simple table:
+--------------------+--------------------------+
| **Name** | **Job** |
+--------------------+--------------------------+
| Tim | CEO of Microsoft |
+--------------------+--------------------------+This is how you show a program listing or some preformatted text::
shrub:SphinxTutorial timlinux$ ls -lah
total 8
drwxr-xr-x 4 timlinux staff 136B Apr 8 09:55 .
drwxr-xr-x 19 timlinux staff 646B Apr 8 09:27 ..
drwxr-xr-x 14 timlinux staff 476B Apr 8 10:00 .git
-rw-r--r-- 1 timlinux staff 206B Apr 8 09:59 README.rstHow to install git on Ubuntu::
sudo apt-get install git