├── .gitignore ├── LICENSE ├── README.rst ├── doc ├── README.html ├── README.odt ├── README.rst ├── README_fr.html ├── README_fr.odt ├── README_fr.rst ├── history-porting.rst ├── reStPlugin.png └── screenshots │ ├── plugin-bottom-panel.png │ ├── plugin-preferences-dialog.png │ ├── plugin-side-panel-switcher.png │ └── plugin-side-panel.png ├── reST.plugin ├── reST ├── RegisterPygment.py ├── __init__.py ├── config.py ├── config.ui ├── default.odt ├── default.sty ├── makeTable.py ├── restructuredtext.css ├── restructuredtext.py ├── schemas │ ├── gschemas.compiled │ └── org.gnome.gedit.plugins.restructuredtext.gschema.xml ├── to_html.py ├── to_odt.py └── to_tex.py └── syntax ├── README.rst └── reST.lang /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.py[cod] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/README.rst -------------------------------------------------------------------------------- /doc/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/README.html -------------------------------------------------------------------------------- /doc/README.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/README.odt -------------------------------------------------------------------------------- /doc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/README.rst -------------------------------------------------------------------------------- /doc/README_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/README_fr.html -------------------------------------------------------------------------------- /doc/README_fr.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/README_fr.odt -------------------------------------------------------------------------------- /doc/README_fr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/README_fr.rst -------------------------------------------------------------------------------- /doc/history-porting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/history-porting.rst -------------------------------------------------------------------------------- /doc/reStPlugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/reStPlugin.png -------------------------------------------------------------------------------- /doc/screenshots/plugin-bottom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/screenshots/plugin-bottom-panel.png -------------------------------------------------------------------------------- /doc/screenshots/plugin-preferences-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/screenshots/plugin-preferences-dialog.png -------------------------------------------------------------------------------- /doc/screenshots/plugin-side-panel-switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/screenshots/plugin-side-panel-switcher.png -------------------------------------------------------------------------------- /doc/screenshots/plugin-side-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/doc/screenshots/plugin-side-panel.png -------------------------------------------------------------------------------- /reST.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST.plugin -------------------------------------------------------------------------------- /reST/RegisterPygment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/RegisterPygment.py -------------------------------------------------------------------------------- /reST/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/__init__.py -------------------------------------------------------------------------------- /reST/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/config.py -------------------------------------------------------------------------------- /reST/config.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/config.ui -------------------------------------------------------------------------------- /reST/default.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/default.odt -------------------------------------------------------------------------------- /reST/default.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/default.sty -------------------------------------------------------------------------------- /reST/makeTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/makeTable.py -------------------------------------------------------------------------------- /reST/restructuredtext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/restructuredtext.css -------------------------------------------------------------------------------- /reST/restructuredtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/restructuredtext.py -------------------------------------------------------------------------------- /reST/schemas/gschemas.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/schemas/gschemas.compiled -------------------------------------------------------------------------------- /reST/schemas/org.gnome.gedit.plugins.restructuredtext.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/schemas/org.gnome.gedit.plugins.restructuredtext.gschema.xml -------------------------------------------------------------------------------- /reST/to_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/to_html.py -------------------------------------------------------------------------------- /reST/to_odt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/to_odt.py -------------------------------------------------------------------------------- /reST/to_tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/reST/to_tex.py -------------------------------------------------------------------------------- /syntax/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/syntax/README.rst -------------------------------------------------------------------------------- /syntax/reST.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittner/gedit-reST-plugin/HEAD/syntax/reST.lang --------------------------------------------------------------------------------