├── .gitignore ├── LICENSE ├── README.rst └── docs ├── Makefile ├── make.bat └── source ├── commands.rst ├── conf.py ├── configuration.rst ├── images ├── combined.png ├── highlights.png ├── overview.png ├── portals.png └── visual_mark.png ├── index.rst ├── installation.rst ├── scripting.rst └── usage.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/commands.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/configuration.rst -------------------------------------------------------------------------------- /docs/source/images/combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/images/combined.png -------------------------------------------------------------------------------- /docs/source/images/highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/images/highlights.png -------------------------------------------------------------------------------- /docs/source/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/images/overview.png -------------------------------------------------------------------------------- /docs/source/images/portals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/images/portals.png -------------------------------------------------------------------------------- /docs/source/images/visual_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/images/visual_mark.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/scripting.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrm/sioyek-documentation/HEAD/docs/source/usage.rst --------------------------------------------------------------------------------