├── .dockerignore ├── .flake8 ├── .github └── workflows │ ├── check.yml │ └── deploy.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── README.md ├── apidoc │ └── .gitkeep ├── cookbook │ ├── codestepping.md │ ├── grids.md │ ├── headers.md │ ├── postprocessing.md │ └── zoom.md ├── css │ └── clipboard.css ├── gallery.md ├── getting_started.md ├── img │ └── clipboard.svg ├── imgs │ ├── arrows.png │ ├── arrows.svg │ ├── elsie-jupyter-interactive.gif │ └── python.png ├── installation.md ├── js │ └── clipboard.js ├── logo.jpeg ├── mkdocs-elsie-plugin │ ├── mkdocs_elsie_plugin │ │ └── __init__.py │ └── setup.py ├── mkdocs-nedoc-plugin │ ├── mkdocs_nedoc_plugin │ │ └── __init__.py │ └── setup.py ├── template │ └── main.html └── userguide │ ├── basics.md │ ├── images.md │ ├── jupyter.md │ ├── latex.md │ ├── layout.md │ ├── lists.md │ ├── markdown.md │ ├── revealing.md │ ├── shapes.md │ ├── syntax_highlighting.md │ └── text.md ├── elsie ├── __init__.py ├── boxtree │ ├── __init__.py │ ├── box.py │ ├── boxitem.py │ ├── boxmixin.py │ ├── layout.py │ ├── lazy.py │ └── value.py ├── ext │ ├── __init__.py │ ├── export.py │ ├── latex.py │ ├── list.py │ ├── markdown.py │ └── todo.py ├── render │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── backend.py │ │ ├── cairo │ │ │ ├── __init__.py │ │ │ ├── backend.py │ │ │ ├── draw.py │ │ │ ├── rcontext.py │ │ │ ├── shapes.py │ │ │ ├── svg.py │ │ │ ├── text.py │ │ │ └── utils.py │ │ ├── rcontext.py │ │ └── svg │ │ │ ├── __init__.py │ │ │ ├── backend.py │ │ │ ├── draw.py │ │ │ ├── query.py │ │ │ ├── rcontext.py │ │ │ └── utils.py │ ├── image.py │ ├── inkscape.py │ ├── jupyter.py │ ├── ora.py │ ├── pdfmerge.py │ └── render.py ├── shapes │ ├── __init__.py │ ├── arrow.py │ └── path.py ├── slides │ ├── __init__.py │ ├── show.py │ ├── slide.py │ └── slidedeck.py ├── text │ ├── __init__.py │ ├── highlight.py │ ├── stylecontainer.py │ ├── textboxitem.py │ ├── textparser.py │ └── textstyle.py ├── utils │ ├── __init__.py │ ├── cache.py │ ├── files.py │ ├── geom.py │ └── sxml.py └── version.py ├── examples ├── bigdemo │ ├── bigdemo.pdf │ ├── bigdemo.py │ └── testimage.svg ├── build-examples.sh ├── hello-world │ ├── hello-world.pdf │ └── hello-world.py ├── jupyter │ └── jupyter.ipynb ├── latex │ ├── latex.pdf │ └── latex.py └── page_numbers │ ├── page_numbers.pdf │ └── page_numbers.py ├── mkdocs.yml ├── nedoc.conf ├── requirements-dev.txt ├── requirements.txt ├── scripts └── reformat.sh ├── setup.py └── tests ├── conftest.py ├── data ├── assets │ ├── arrows.svg │ ├── oratest.ora │ ├── test.jpeg │ ├── test.pdf │ ├── test.png │ ├── test100x30.svg │ ├── testimage.svg │ └── testimage2.svg └── checks │ ├── chess-0.svg │ ├── chess-1.svg │ ├── chess-2.svg │ ├── chess-3.svg │ ├── code-use-styles-0.svg │ ├── columns-0.svg │ ├── console-0.svg │ ├── debug_boxes-0.svg │ ├── draw-boxrel-0.svg │ ├── draw-rotated-0.svg │ ├── dummy-style-0.svg │ ├── dummy-style-code-0.svg │ ├── dummy-style-code-1.svg │ ├── fullbox-0.svg │ ├── hbox-fill-0.svg │ ├── hbox-nofill-0.svg │ ├── header-0.svg │ ├── highlight-bug-2-0.svg │ ├── highlight-bug-3-0.svg │ ├── highlight-bug-4-0.svg │ ├── highlight-whitespace-0.svg │ ├── image-bitmap-0.svg │ ├── image-bitmap-no-size-0.svg │ ├── image-height-0.svg │ ├── image-show-next-0.svg │ ├── image-show-next-1.svg │ ├── image-show-next-2.svg │ ├── image-show-next-3.svg │ ├── image-show-next-4.svg │ ├── image-source-0.svg │ ├── image-substeps1-0.svg │ ├── image-substeps1-1.svg │ ├── image-substeps1-2.svg │ ├── image-substeps2-0.svg │ ├── image-substeps2-1.svg │ ├── image-substeps2-2.svg │ ├── image-svg-no-size-0.svg │ ├── image-width-0.svg │ ├── image-width-height-0.svg │ ├── imagefrag-0.svg │ ├── imagefrag-1.svg │ ├── imagefrag-2.svg │ ├── imagefrag-3.svg │ ├── imagefrag-4.svg │ ├── imagefrag-5.svg │ ├── imagenofrag-0.svg │ ├── imageshowx-0.svg │ ├── imageshowx-1.svg │ ├── imageshowx-2.svg │ ├── leaf_chaining-0.svg │ ├── linehighlight-0.svg │ ├── linehighlight-1.svg │ ├── linehighlight-2.svg │ ├── linehighlight-3.svg │ ├── linehighlight-4.svg │ ├── linenumbers-0.svg │ ├── list-0.svg │ ├── list-basic-0.svg │ ├── list-combine-ordered-unordered-0.svg │ ├── list-horizontal-parent-0.svg │ ├── list-indent-0.svg │ ├── list-multi-line-0.svg │ ├── list-no-bullet-0.svg │ ├── list-ordered-explicit-level-0.svg │ ├── list-ordered-indent-0.svg │ ├── list-override-0.svg │ ├── list-override-1.svg │ ├── md-basic-0.svg │ ├── md-blank-line-between-paragraphs-0.svg │ ├── md-blockquote-0.svg │ ├── md-fenced-code-0.svg │ ├── md-inline-style-0.svg │ ├── md-link-0.svg │ ├── md-list-item-multi-line-0.svg │ ├── md-list-ol-nested-0.svg │ ├── md-list-ol-ul-nested-0.svg │ ├── md-list-simple-0.svg │ ├── md-list-ul-nested-0.svg │ ├── md-list-ul-ol-nested-0.svg │ ├── md-override-style-0.svg │ ├── md-skip-invalid-elements-0.svg │ ├── md-text-formatting-0.svg │ ├── md-ul-bullet-point-0.svg │ ├── next-0.svg │ ├── next-1.svg │ ├── next-2.svg │ ├── next-3.svg │ ├── next-4.svg │ ├── next-5.svg │ ├── next-6.svg │ ├── next-7.svg │ ├── next-8.svg │ ├── next-9.svg │ ├── nofrag_showbegin-0.svg │ ├── nofrag_showbegin-1.svg │ ├── nofrag_showbegin-2.svg │ ├── ora-frag-0.svg │ ├── ora-frag-1.svg │ ├── ora-frag-2.svg │ ├── ora-frag-3.svg │ ├── ora-frag-sb-0.svg │ ├── ora-frag-sb-1.svg │ ├── ora-frag-sb-2.svg │ ├── ora-frag-sb-3.svg │ ├── ora-frag-sb-4.svg │ ├── ora-frag-sb-5.svg │ ├── ora-nofrag-0.svg │ ├── path-0.svg │ ├── per_page_groupping-0.svg │ ├── per_page_groupping-1.svg │ ├── per_page_groupping2-0.svg │ ├── prepend-0.svg │ ├── preprocessor-0.svg │ ├── preprocessor-1.svg │ ├── preprocessor-2.svg │ ├── sbox_on_text-0.svg │ ├── scale-no-dimensions-0.svg │ ├── shapes-0.svg │ ├── sizepos-0.svg │ ├── styles-0.svg │ ├── styles-highlight-0.svg │ ├── styles-priority-0.svg │ ├── text-above-below-0.svg │ ├── text-box-left-0.svg │ ├── text-box-middle-0.svg │ ├── text-box-right-0.svg │ ├── text-fit-a-0.svg │ ├── text-fit-b-0.svg │ ├── text-fit-code-0.svg │ ├── text-fit-empty-0.svg │ ├── text-fit-fill-0.svg │ ├── text-fit-pointers1-0.svg │ ├── text-fit-pointers2-0.svg │ ├── text-rotated-0.svg │ ├── vbox-fill-0.svg │ ├── vbox-nofill-0.svg │ └── viewbox-0.svg ├── ext ├── test_lists.py └── test_markdown.py ├── test_draw.py ├── test_image.py ├── test_jupyter.py ├── test_layout.py ├── test_others.py ├── test_render.py ├── test_show.py ├── test_slides.py ├── test_text.py ├── test_utils.py ├── test_value.py └── updatetests.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/apidoc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/cookbook/codestepping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/cookbook/codestepping.md -------------------------------------------------------------------------------- /docs/cookbook/grids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/cookbook/grids.md -------------------------------------------------------------------------------- /docs/cookbook/headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/cookbook/headers.md -------------------------------------------------------------------------------- /docs/cookbook/postprocessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/cookbook/postprocessing.md -------------------------------------------------------------------------------- /docs/cookbook/zoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/cookbook/zoom.md -------------------------------------------------------------------------------- /docs/css/clipboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/css/clipboard.css -------------------------------------------------------------------------------- /docs/gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/gallery.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/img/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/img/clipboard.svg -------------------------------------------------------------------------------- /docs/imgs/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/imgs/arrows.png -------------------------------------------------------------------------------- /docs/imgs/arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/imgs/arrows.svg -------------------------------------------------------------------------------- /docs/imgs/elsie-jupyter-interactive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/imgs/elsie-jupyter-interactive.gif -------------------------------------------------------------------------------- /docs/imgs/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/imgs/python.png -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/js/clipboard.js -------------------------------------------------------------------------------- /docs/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/logo.jpeg -------------------------------------------------------------------------------- /docs/mkdocs-elsie-plugin/mkdocs_elsie_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/mkdocs-elsie-plugin/mkdocs_elsie_plugin/__init__.py -------------------------------------------------------------------------------- /docs/mkdocs-elsie-plugin/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/mkdocs-elsie-plugin/setup.py -------------------------------------------------------------------------------- /docs/mkdocs-nedoc-plugin/mkdocs_nedoc_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/mkdocs-nedoc-plugin/mkdocs_nedoc_plugin/__init__.py -------------------------------------------------------------------------------- /docs/mkdocs-nedoc-plugin/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/mkdocs-nedoc-plugin/setup.py -------------------------------------------------------------------------------- /docs/template/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/template/main.html -------------------------------------------------------------------------------- /docs/userguide/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/basics.md -------------------------------------------------------------------------------- /docs/userguide/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/images.md -------------------------------------------------------------------------------- /docs/userguide/jupyter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/jupyter.md -------------------------------------------------------------------------------- /docs/userguide/latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/latex.md -------------------------------------------------------------------------------- /docs/userguide/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/layout.md -------------------------------------------------------------------------------- /docs/userguide/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/lists.md -------------------------------------------------------------------------------- /docs/userguide/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/markdown.md -------------------------------------------------------------------------------- /docs/userguide/revealing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/revealing.md -------------------------------------------------------------------------------- /docs/userguide/shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/shapes.md -------------------------------------------------------------------------------- /docs/userguide/syntax_highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/syntax_highlighting.md -------------------------------------------------------------------------------- /docs/userguide/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/docs/userguide/text.md -------------------------------------------------------------------------------- /elsie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/__init__.py -------------------------------------------------------------------------------- /elsie/boxtree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elsie/boxtree/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/boxtree/box.py -------------------------------------------------------------------------------- /elsie/boxtree/boxitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/boxtree/boxitem.py -------------------------------------------------------------------------------- /elsie/boxtree/boxmixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/boxtree/boxmixin.py -------------------------------------------------------------------------------- /elsie/boxtree/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/boxtree/layout.py -------------------------------------------------------------------------------- /elsie/boxtree/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/boxtree/lazy.py -------------------------------------------------------------------------------- /elsie/boxtree/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/boxtree/value.py -------------------------------------------------------------------------------- /elsie/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/ext/__init__.py -------------------------------------------------------------------------------- /elsie/ext/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/ext/export.py -------------------------------------------------------------------------------- /elsie/ext/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/ext/latex.py -------------------------------------------------------------------------------- /elsie/ext/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/ext/list.py -------------------------------------------------------------------------------- /elsie/ext/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/ext/markdown.py -------------------------------------------------------------------------------- /elsie/ext/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/ext/todo.py -------------------------------------------------------------------------------- /elsie/render/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elsie/render/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/__init__.py -------------------------------------------------------------------------------- /elsie/render/backends/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/backend.py -------------------------------------------------------------------------------- /elsie/render/backends/cairo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elsie/render/backends/cairo/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/cairo/backend.py -------------------------------------------------------------------------------- /elsie/render/backends/cairo/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/cairo/draw.py -------------------------------------------------------------------------------- /elsie/render/backends/cairo/rcontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/cairo/rcontext.py -------------------------------------------------------------------------------- /elsie/render/backends/cairo/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/cairo/shapes.py -------------------------------------------------------------------------------- /elsie/render/backends/cairo/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/cairo/svg.py -------------------------------------------------------------------------------- /elsie/render/backends/cairo/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/cairo/text.py -------------------------------------------------------------------------------- /elsie/render/backends/cairo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/cairo/utils.py -------------------------------------------------------------------------------- /elsie/render/backends/rcontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/rcontext.py -------------------------------------------------------------------------------- /elsie/render/backends/svg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elsie/render/backends/svg/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/svg/backend.py -------------------------------------------------------------------------------- /elsie/render/backends/svg/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/svg/draw.py -------------------------------------------------------------------------------- /elsie/render/backends/svg/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/svg/query.py -------------------------------------------------------------------------------- /elsie/render/backends/svg/rcontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/svg/rcontext.py -------------------------------------------------------------------------------- /elsie/render/backends/svg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/backends/svg/utils.py -------------------------------------------------------------------------------- /elsie/render/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/image.py -------------------------------------------------------------------------------- /elsie/render/inkscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/inkscape.py -------------------------------------------------------------------------------- /elsie/render/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/jupyter.py -------------------------------------------------------------------------------- /elsie/render/ora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/ora.py -------------------------------------------------------------------------------- /elsie/render/pdfmerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/pdfmerge.py -------------------------------------------------------------------------------- /elsie/render/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/render/render.py -------------------------------------------------------------------------------- /elsie/shapes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elsie/shapes/arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/shapes/arrow.py -------------------------------------------------------------------------------- /elsie/shapes/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/shapes/path.py -------------------------------------------------------------------------------- /elsie/slides/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elsie/slides/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/slides/show.py -------------------------------------------------------------------------------- /elsie/slides/slide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/slides/slide.py -------------------------------------------------------------------------------- /elsie/slides/slidedeck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/slides/slidedeck.py -------------------------------------------------------------------------------- /elsie/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elsie/text/highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/text/highlight.py -------------------------------------------------------------------------------- /elsie/text/stylecontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/text/stylecontainer.py -------------------------------------------------------------------------------- /elsie/text/textboxitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/text/textboxitem.py -------------------------------------------------------------------------------- /elsie/text/textparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/text/textparser.py -------------------------------------------------------------------------------- /elsie/text/textstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/text/textstyle.py -------------------------------------------------------------------------------- /elsie/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elsie/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/utils/cache.py -------------------------------------------------------------------------------- /elsie/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/utils/files.py -------------------------------------------------------------------------------- /elsie/utils/geom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/utils/geom.py -------------------------------------------------------------------------------- /elsie/utils/sxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/utils/sxml.py -------------------------------------------------------------------------------- /elsie/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/elsie/version.py -------------------------------------------------------------------------------- /examples/bigdemo/bigdemo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/bigdemo/bigdemo.pdf -------------------------------------------------------------------------------- /examples/bigdemo/bigdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/bigdemo/bigdemo.py -------------------------------------------------------------------------------- /examples/bigdemo/testimage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/bigdemo/testimage.svg -------------------------------------------------------------------------------- /examples/build-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/build-examples.sh -------------------------------------------------------------------------------- /examples/hello-world/hello-world.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/hello-world/hello-world.pdf -------------------------------------------------------------------------------- /examples/hello-world/hello-world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/hello-world/hello-world.py -------------------------------------------------------------------------------- /examples/jupyter/jupyter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/jupyter/jupyter.ipynb -------------------------------------------------------------------------------- /examples/latex/latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/latex/latex.pdf -------------------------------------------------------------------------------- /examples/latex/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/latex/latex.py -------------------------------------------------------------------------------- /examples/page_numbers/page_numbers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/page_numbers/page_numbers.pdf -------------------------------------------------------------------------------- /examples/page_numbers/page_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/examples/page_numbers/page_numbers.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nedoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/nedoc.conf -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/reformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/scripts/reformat.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/assets/arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/assets/arrows.svg -------------------------------------------------------------------------------- /tests/data/assets/oratest.ora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/assets/oratest.ora -------------------------------------------------------------------------------- /tests/data/assets/test.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/assets/test.jpeg -------------------------------------------------------------------------------- /tests/data/assets/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/assets/test.pdf -------------------------------------------------------------------------------- /tests/data/assets/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/assets/test.png -------------------------------------------------------------------------------- /tests/data/assets/test100x30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/assets/test100x30.svg -------------------------------------------------------------------------------- /tests/data/assets/testimage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/assets/testimage.svg -------------------------------------------------------------------------------- /tests/data/assets/testimage2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/assets/testimage2.svg -------------------------------------------------------------------------------- /tests/data/checks/chess-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/chess-0.svg -------------------------------------------------------------------------------- /tests/data/checks/chess-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/chess-1.svg -------------------------------------------------------------------------------- /tests/data/checks/chess-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/chess-2.svg -------------------------------------------------------------------------------- /tests/data/checks/chess-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/chess-3.svg -------------------------------------------------------------------------------- /tests/data/checks/code-use-styles-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/code-use-styles-0.svg -------------------------------------------------------------------------------- /tests/data/checks/columns-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/columns-0.svg -------------------------------------------------------------------------------- /tests/data/checks/console-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/console-0.svg -------------------------------------------------------------------------------- /tests/data/checks/debug_boxes-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/debug_boxes-0.svg -------------------------------------------------------------------------------- /tests/data/checks/draw-boxrel-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/draw-boxrel-0.svg -------------------------------------------------------------------------------- /tests/data/checks/draw-rotated-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/draw-rotated-0.svg -------------------------------------------------------------------------------- /tests/data/checks/dummy-style-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/dummy-style-0.svg -------------------------------------------------------------------------------- /tests/data/checks/dummy-style-code-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/dummy-style-code-0.svg -------------------------------------------------------------------------------- /tests/data/checks/dummy-style-code-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/dummy-style-code-1.svg -------------------------------------------------------------------------------- /tests/data/checks/fullbox-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/fullbox-0.svg -------------------------------------------------------------------------------- /tests/data/checks/hbox-fill-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/hbox-fill-0.svg -------------------------------------------------------------------------------- /tests/data/checks/hbox-nofill-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/hbox-nofill-0.svg -------------------------------------------------------------------------------- /tests/data/checks/header-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/header-0.svg -------------------------------------------------------------------------------- /tests/data/checks/highlight-bug-2-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/highlight-bug-2-0.svg -------------------------------------------------------------------------------- /tests/data/checks/highlight-bug-3-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/highlight-bug-3-0.svg -------------------------------------------------------------------------------- /tests/data/checks/highlight-bug-4-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/highlight-bug-4-0.svg -------------------------------------------------------------------------------- /tests/data/checks/highlight-whitespace-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/highlight-whitespace-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-bitmap-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-bitmap-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-bitmap-no-size-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-bitmap-no-size-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-height-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-height-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-show-next-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-show-next-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-show-next-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-show-next-1.svg -------------------------------------------------------------------------------- /tests/data/checks/image-show-next-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-show-next-2.svg -------------------------------------------------------------------------------- /tests/data/checks/image-show-next-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-show-next-3.svg -------------------------------------------------------------------------------- /tests/data/checks/image-show-next-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-show-next-4.svg -------------------------------------------------------------------------------- /tests/data/checks/image-source-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-source-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-substeps1-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-substeps1-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-substeps1-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-substeps1-1.svg -------------------------------------------------------------------------------- /tests/data/checks/image-substeps1-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-substeps1-2.svg -------------------------------------------------------------------------------- /tests/data/checks/image-substeps2-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-substeps2-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-substeps2-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-substeps2-1.svg -------------------------------------------------------------------------------- /tests/data/checks/image-substeps2-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-substeps2-2.svg -------------------------------------------------------------------------------- /tests/data/checks/image-svg-no-size-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-svg-no-size-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-width-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-width-0.svg -------------------------------------------------------------------------------- /tests/data/checks/image-width-height-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/image-width-height-0.svg -------------------------------------------------------------------------------- /tests/data/checks/imagefrag-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imagefrag-0.svg -------------------------------------------------------------------------------- /tests/data/checks/imagefrag-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imagefrag-1.svg -------------------------------------------------------------------------------- /tests/data/checks/imagefrag-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imagefrag-2.svg -------------------------------------------------------------------------------- /tests/data/checks/imagefrag-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imagefrag-3.svg -------------------------------------------------------------------------------- /tests/data/checks/imagefrag-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imagefrag-4.svg -------------------------------------------------------------------------------- /tests/data/checks/imagefrag-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imagefrag-5.svg -------------------------------------------------------------------------------- /tests/data/checks/imagenofrag-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imagenofrag-0.svg -------------------------------------------------------------------------------- /tests/data/checks/imageshowx-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imageshowx-0.svg -------------------------------------------------------------------------------- /tests/data/checks/imageshowx-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imageshowx-1.svg -------------------------------------------------------------------------------- /tests/data/checks/imageshowx-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/imageshowx-2.svg -------------------------------------------------------------------------------- /tests/data/checks/leaf_chaining-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/leaf_chaining-0.svg -------------------------------------------------------------------------------- /tests/data/checks/linehighlight-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/linehighlight-0.svg -------------------------------------------------------------------------------- /tests/data/checks/linehighlight-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/linehighlight-1.svg -------------------------------------------------------------------------------- /tests/data/checks/linehighlight-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/linehighlight-2.svg -------------------------------------------------------------------------------- /tests/data/checks/linehighlight-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/linehighlight-3.svg -------------------------------------------------------------------------------- /tests/data/checks/linehighlight-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/linehighlight-4.svg -------------------------------------------------------------------------------- /tests/data/checks/linenumbers-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/linenumbers-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-basic-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-basic-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-combine-ordered-unordered-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-combine-ordered-unordered-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-horizontal-parent-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-horizontal-parent-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-indent-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-indent-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-multi-line-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-multi-line-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-no-bullet-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-no-bullet-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-ordered-explicit-level-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-ordered-explicit-level-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-ordered-indent-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-ordered-indent-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-override-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-override-0.svg -------------------------------------------------------------------------------- /tests/data/checks/list-override-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/list-override-1.svg -------------------------------------------------------------------------------- /tests/data/checks/md-basic-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-basic-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-blank-line-between-paragraphs-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-blank-line-between-paragraphs-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-blockquote-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-blockquote-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-fenced-code-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-fenced-code-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-inline-style-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-inline-style-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-link-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-link-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-list-item-multi-line-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-list-item-multi-line-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-list-ol-nested-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-list-ol-nested-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-list-ol-ul-nested-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-list-ol-ul-nested-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-list-simple-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-list-simple-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-list-ul-nested-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-list-ul-nested-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-list-ul-ol-nested-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-list-ul-ol-nested-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-override-style-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-override-style-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-skip-invalid-elements-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-skip-invalid-elements-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-text-formatting-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-text-formatting-0.svg -------------------------------------------------------------------------------- /tests/data/checks/md-ul-bullet-point-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/md-ul-bullet-point-0.svg -------------------------------------------------------------------------------- /tests/data/checks/next-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-0.svg -------------------------------------------------------------------------------- /tests/data/checks/next-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-1.svg -------------------------------------------------------------------------------- /tests/data/checks/next-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-2.svg -------------------------------------------------------------------------------- /tests/data/checks/next-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-3.svg -------------------------------------------------------------------------------- /tests/data/checks/next-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-4.svg -------------------------------------------------------------------------------- /tests/data/checks/next-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-5.svg -------------------------------------------------------------------------------- /tests/data/checks/next-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-6.svg -------------------------------------------------------------------------------- /tests/data/checks/next-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-7.svg -------------------------------------------------------------------------------- /tests/data/checks/next-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-8.svg -------------------------------------------------------------------------------- /tests/data/checks/next-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/next-9.svg -------------------------------------------------------------------------------- /tests/data/checks/nofrag_showbegin-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/nofrag_showbegin-0.svg -------------------------------------------------------------------------------- /tests/data/checks/nofrag_showbegin-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/nofrag_showbegin-1.svg -------------------------------------------------------------------------------- /tests/data/checks/nofrag_showbegin-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/nofrag_showbegin-2.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-0.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-1.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-2.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-3.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-sb-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-sb-0.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-sb-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-sb-1.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-sb-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-sb-2.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-sb-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-sb-3.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-sb-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-sb-4.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-frag-sb-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-frag-sb-5.svg -------------------------------------------------------------------------------- /tests/data/checks/ora-nofrag-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/ora-nofrag-0.svg -------------------------------------------------------------------------------- /tests/data/checks/path-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/path-0.svg -------------------------------------------------------------------------------- /tests/data/checks/per_page_groupping-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/per_page_groupping-0.svg -------------------------------------------------------------------------------- /tests/data/checks/per_page_groupping-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/per_page_groupping-1.svg -------------------------------------------------------------------------------- /tests/data/checks/per_page_groupping2-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/per_page_groupping2-0.svg -------------------------------------------------------------------------------- /tests/data/checks/prepend-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/prepend-0.svg -------------------------------------------------------------------------------- /tests/data/checks/preprocessor-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/preprocessor-0.svg -------------------------------------------------------------------------------- /tests/data/checks/preprocessor-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/preprocessor-1.svg -------------------------------------------------------------------------------- /tests/data/checks/preprocessor-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/preprocessor-2.svg -------------------------------------------------------------------------------- /tests/data/checks/sbox_on_text-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/sbox_on_text-0.svg -------------------------------------------------------------------------------- /tests/data/checks/scale-no-dimensions-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/scale-no-dimensions-0.svg -------------------------------------------------------------------------------- /tests/data/checks/shapes-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/shapes-0.svg -------------------------------------------------------------------------------- /tests/data/checks/sizepos-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/sizepos-0.svg -------------------------------------------------------------------------------- /tests/data/checks/styles-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/styles-0.svg -------------------------------------------------------------------------------- /tests/data/checks/styles-highlight-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/styles-highlight-0.svg -------------------------------------------------------------------------------- /tests/data/checks/styles-priority-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/styles-priority-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-above-below-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-above-below-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-box-left-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-box-left-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-box-middle-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-box-middle-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-box-right-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-box-right-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-fit-a-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-fit-a-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-fit-b-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-fit-b-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-fit-code-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-fit-code-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-fit-empty-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-fit-empty-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-fit-fill-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-fit-fill-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-fit-pointers1-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-fit-pointers1-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-fit-pointers2-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-fit-pointers2-0.svg -------------------------------------------------------------------------------- /tests/data/checks/text-rotated-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/text-rotated-0.svg -------------------------------------------------------------------------------- /tests/data/checks/vbox-fill-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/vbox-fill-0.svg -------------------------------------------------------------------------------- /tests/data/checks/vbox-nofill-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/vbox-nofill-0.svg -------------------------------------------------------------------------------- /tests/data/checks/viewbox-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/data/checks/viewbox-0.svg -------------------------------------------------------------------------------- /tests/ext/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/ext/test_lists.py -------------------------------------------------------------------------------- /tests/ext/test_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/ext/test_markdown.py -------------------------------------------------------------------------------- /tests/test_draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_draw.py -------------------------------------------------------------------------------- /tests/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_image.py -------------------------------------------------------------------------------- /tests/test_jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_jupyter.py -------------------------------------------------------------------------------- /tests/test_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_layout.py -------------------------------------------------------------------------------- /tests/test_others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_others.py -------------------------------------------------------------------------------- /tests/test_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_render.py -------------------------------------------------------------------------------- /tests/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_show.py -------------------------------------------------------------------------------- /tests/test_slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_slides.py -------------------------------------------------------------------------------- /tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_text.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/test_value.py -------------------------------------------------------------------------------- /tests/updatetests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spirali/elsie/HEAD/tests/updatetests.py --------------------------------------------------------------------------------