├── .deepsource.toml ├── .github └── workflows │ └── tiptapy.yml ├── .gitignore ├── .travis.yml.deprecated ├── CHANGELOG.rst ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TODO.md ├── pip-requirements.txt ├── pytest.ini ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── data │ ├── html │ │ ├── audio-is_renderable.html │ │ ├── audio-no_caption.html │ │ ├── audio.html │ │ ├── blockquote.html │ │ ├── bulletlist.html │ │ ├── camel-case.html │ │ ├── code_block-is_renderable.html │ │ ├── code_block.html │ │ ├── data_attributes.html │ │ ├── document-is_renderable.html │ │ ├── document-pdf.html │ │ ├── document-sketch.html │ │ ├── embed-missing_caption.html │ │ ├── embed-no_caption.html │ │ ├── embed-null_caption.html │ │ ├── embed.html │ │ ├── featuredimage-height_width.html │ │ ├── featuredimage-is_renderable.html │ │ ├── featuredimage-mime_type.html │ │ ├── featuredimage-missing_caption.html │ │ ├── featuredimage-no_caption.html │ │ ├── featuredimage.html │ │ ├── heading.html │ │ ├── horizontal_rule.html │ │ ├── image-height_width.html │ │ ├── image-is_renderable.html │ │ ├── image-mime_type.html │ │ ├── image-missing_caption.html │ │ ├── image-no_caption.html │ │ ├── image-src_string.html │ │ ├── image.html │ │ ├── is_renderable.html │ │ ├── mark_tags.html │ │ ├── ordered_list.html │ │ ├── paragraph-codemark.html │ │ ├── paragraph-escape.html │ │ ├── paragraph-is_renderable.html │ │ ├── paragraph.html │ │ ├── simple.html │ │ └── xss.html │ └── json │ │ ├── audio-is_renderable.json │ │ ├── audio-no_caption.json │ │ ├── audio.json │ │ ├── blockquote.json │ │ ├── bulletlist.json │ │ ├── camel-case.json │ │ ├── code_block-is_renderable.json │ │ ├── code_block.json │ │ ├── data_attributes.json │ │ ├── document-is_renderable.json │ │ ├── document-pdf.json │ │ ├── document-sketch.json │ │ ├── embed-missing_caption.json │ │ ├── embed-no_caption.json │ │ ├── embed-null_caption.json │ │ ├── embed.json │ │ ├── featuredimage-height_width.json │ │ ├── featuredimage-is_renderable.json │ │ ├── featuredimage-mime_type.json │ │ ├── featuredimage-missing_caption.json │ │ ├── featuredimage-no_caption.json │ │ ├── featuredimage.json │ │ ├── heading.json │ │ ├── horizontal_rule.json │ │ ├── image-height_width.json │ │ ├── image-is_renderable.json │ │ ├── image-mime_type.json │ │ ├── image-missing_caption.json │ │ ├── image-no_caption.json │ │ ├── image-src_string.json │ │ ├── image.json │ │ ├── is_renderable.json │ │ ├── mark_tags.json │ │ ├── ordered_list.json │ │ ├── paragraph-codemark.json │ │ ├── paragraph-escape.json │ │ ├── paragraph-is_renderable.json │ │ ├── paragraph.json │ │ ├── simple.json │ │ └── xss.json ├── test_basic.py └── test_transform.py └── tiptapy ├── __init__.py ├── image.py ├── macros.py └── templates ├── blockquote.html ├── bulletList.html ├── bullet_list.html ├── codeBlock.html ├── code_block.html ├── doc.html ├── embed.html ├── extras ├── audio.html ├── document.html └── featuredimage.html ├── hardBreak.html ├── hard_break.html ├── heading.html ├── horizontalRule.html ├── horizontal_rule.html ├── image.html ├── listItem.html ├── list_item.html ├── marks ├── bold.html ├── code.html ├── italic.html ├── link.html ├── sup.html └── underline.html ├── orderedList.html ├── ordered_list.html ├── paragraph.html ├── stack-audio-player.html ├── stack-document.html ├── text.html └── title.html /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/workflows/tiptapy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/.github/workflows/tiptapy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml.deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/.travis.yml.deprecated -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/TODO.md -------------------------------------------------------------------------------- /pip-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | jinja2 -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/html/audio-is_renderable.html: -------------------------------------------------------------------------------- 1 |

Quick brown fox jumps over the lazy dog.

-------------------------------------------------------------------------------- /tests/data/html/audio-no_caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/audio-no_caption.html -------------------------------------------------------------------------------- /tests/data/html/audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/audio.html -------------------------------------------------------------------------------- /tests/data/html/blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/blockquote.html -------------------------------------------------------------------------------- /tests/data/html/bulletlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/bulletlist.html -------------------------------------------------------------------------------- /tests/data/html/camel-case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/camel-case.html -------------------------------------------------------------------------------- /tests/data/html/code_block-is_renderable.html: -------------------------------------------------------------------------------- 1 |

Quick brown fox jumps over the lazy dog.

-------------------------------------------------------------------------------- /tests/data/html/code_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/code_block.html -------------------------------------------------------------------------------- /tests/data/html/data_attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/data_attributes.html -------------------------------------------------------------------------------- /tests/data/html/document-is_renderable.html: -------------------------------------------------------------------------------- 1 |

Quick brown fox jumps over the lazy dog.

-------------------------------------------------------------------------------- /tests/data/html/document-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/document-pdf.html -------------------------------------------------------------------------------- /tests/data/html/document-sketch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/document-sketch.html -------------------------------------------------------------------------------- /tests/data/html/embed-missing_caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/embed-missing_caption.html -------------------------------------------------------------------------------- /tests/data/html/embed-no_caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/embed-no_caption.html -------------------------------------------------------------------------------- /tests/data/html/embed-null_caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/embed-null_caption.html -------------------------------------------------------------------------------- /tests/data/html/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/embed.html -------------------------------------------------------------------------------- /tests/data/html/featuredimage-height_width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/featuredimage-height_width.html -------------------------------------------------------------------------------- /tests/data/html/featuredimage-is_renderable.html: -------------------------------------------------------------------------------- 1 |

Quick brown fox jumps over the lazy dog.

-------------------------------------------------------------------------------- /tests/data/html/featuredimage-mime_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/featuredimage-mime_type.html -------------------------------------------------------------------------------- /tests/data/html/featuredimage-missing_caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/featuredimage-missing_caption.html -------------------------------------------------------------------------------- /tests/data/html/featuredimage-no_caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/featuredimage-no_caption.html -------------------------------------------------------------------------------- /tests/data/html/featuredimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/featuredimage.html -------------------------------------------------------------------------------- /tests/data/html/heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/heading.html -------------------------------------------------------------------------------- /tests/data/html/horizontal_rule.html: -------------------------------------------------------------------------------- 1 |

-------------------------------------------------------------------------------- /tests/data/html/image-height_width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/image-height_width.html -------------------------------------------------------------------------------- /tests/data/html/image-is_renderable.html: -------------------------------------------------------------------------------- 1 |

Quick brown fox jumps over the lazy dog.

-------------------------------------------------------------------------------- /tests/data/html/image-mime_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/image-mime_type.html -------------------------------------------------------------------------------- /tests/data/html/image-missing_caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/image-missing_caption.html -------------------------------------------------------------------------------- /tests/data/html/image-no_caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/image-no_caption.html -------------------------------------------------------------------------------- /tests/data/html/image-src_string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/image-src_string.html -------------------------------------------------------------------------------- /tests/data/html/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/image.html -------------------------------------------------------------------------------- /tests/data/html/is_renderable.html: -------------------------------------------------------------------------------- 1 |

Quick Brown Fox jumps over the lazy dog

-------------------------------------------------------------------------------- /tests/data/html/mark_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/mark_tags.html -------------------------------------------------------------------------------- /tests/data/html/ordered_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/ordered_list.html -------------------------------------------------------------------------------- /tests/data/html/paragraph-codemark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/paragraph-codemark.html -------------------------------------------------------------------------------- /tests/data/html/paragraph-escape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/paragraph-escape.html -------------------------------------------------------------------------------- /tests/data/html/paragraph-is_renderable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/paragraph-is_renderable.html -------------------------------------------------------------------------------- /tests/data/html/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/paragraph.html -------------------------------------------------------------------------------- /tests/data/html/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/simple.html -------------------------------------------------------------------------------- /tests/data/html/xss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/html/xss.html -------------------------------------------------------------------------------- /tests/data/json/audio-is_renderable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/audio-is_renderable.json -------------------------------------------------------------------------------- /tests/data/json/audio-no_caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/audio-no_caption.json -------------------------------------------------------------------------------- /tests/data/json/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/audio.json -------------------------------------------------------------------------------- /tests/data/json/blockquote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/blockquote.json -------------------------------------------------------------------------------- /tests/data/json/bulletlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/bulletlist.json -------------------------------------------------------------------------------- /tests/data/json/camel-case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/camel-case.json -------------------------------------------------------------------------------- /tests/data/json/code_block-is_renderable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/code_block-is_renderable.json -------------------------------------------------------------------------------- /tests/data/json/code_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/code_block.json -------------------------------------------------------------------------------- /tests/data/json/data_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/data_attributes.json -------------------------------------------------------------------------------- /tests/data/json/document-is_renderable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/document-is_renderable.json -------------------------------------------------------------------------------- /tests/data/json/document-pdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/document-pdf.json -------------------------------------------------------------------------------- /tests/data/json/document-sketch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/document-sketch.json -------------------------------------------------------------------------------- /tests/data/json/embed-missing_caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/embed-missing_caption.json -------------------------------------------------------------------------------- /tests/data/json/embed-no_caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/embed-no_caption.json -------------------------------------------------------------------------------- /tests/data/json/embed-null_caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/embed-null_caption.json -------------------------------------------------------------------------------- /tests/data/json/embed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/embed.json -------------------------------------------------------------------------------- /tests/data/json/featuredimage-height_width.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/featuredimage-height_width.json -------------------------------------------------------------------------------- /tests/data/json/featuredimage-is_renderable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/featuredimage-is_renderable.json -------------------------------------------------------------------------------- /tests/data/json/featuredimage-mime_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/featuredimage-mime_type.json -------------------------------------------------------------------------------- /tests/data/json/featuredimage-missing_caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/featuredimage-missing_caption.json -------------------------------------------------------------------------------- /tests/data/json/featuredimage-no_caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/featuredimage-no_caption.json -------------------------------------------------------------------------------- /tests/data/json/featuredimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/featuredimage.json -------------------------------------------------------------------------------- /tests/data/json/heading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/heading.json -------------------------------------------------------------------------------- /tests/data/json/horizontal_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/horizontal_rule.json -------------------------------------------------------------------------------- /tests/data/json/image-height_width.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/image-height_width.json -------------------------------------------------------------------------------- /tests/data/json/image-is_renderable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/image-is_renderable.json -------------------------------------------------------------------------------- /tests/data/json/image-mime_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/image-mime_type.json -------------------------------------------------------------------------------- /tests/data/json/image-missing_caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/image-missing_caption.json -------------------------------------------------------------------------------- /tests/data/json/image-no_caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/image-no_caption.json -------------------------------------------------------------------------------- /tests/data/json/image-src_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/image-src_string.json -------------------------------------------------------------------------------- /tests/data/json/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/image.json -------------------------------------------------------------------------------- /tests/data/json/is_renderable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/is_renderable.json -------------------------------------------------------------------------------- /tests/data/json/mark_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/mark_tags.json -------------------------------------------------------------------------------- /tests/data/json/ordered_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/ordered_list.json -------------------------------------------------------------------------------- /tests/data/json/paragraph-codemark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/paragraph-codemark.json -------------------------------------------------------------------------------- /tests/data/json/paragraph-escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/paragraph-escape.json -------------------------------------------------------------------------------- /tests/data/json/paragraph-is_renderable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/paragraph-is_renderable.json -------------------------------------------------------------------------------- /tests/data/json/paragraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/paragraph.json -------------------------------------------------------------------------------- /tests/data/json/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/simple.json -------------------------------------------------------------------------------- /tests/data/json/xss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/data/json/xss.json -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tests/test_transform.py -------------------------------------------------------------------------------- /tiptapy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/__init__.py -------------------------------------------------------------------------------- /tiptapy/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/image.py -------------------------------------------------------------------------------- /tiptapy/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/macros.py -------------------------------------------------------------------------------- /tiptapy/templates/blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/blockquote.html -------------------------------------------------------------------------------- /tiptapy/templates/bulletList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/bulletList.html -------------------------------------------------------------------------------- /tiptapy/templates/bullet_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/bullet_list.html -------------------------------------------------------------------------------- /tiptapy/templates/codeBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/codeBlock.html -------------------------------------------------------------------------------- /tiptapy/templates/code_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/code_block.html -------------------------------------------------------------------------------- /tiptapy/templates/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/doc.html -------------------------------------------------------------------------------- /tiptapy/templates/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/embed.html -------------------------------------------------------------------------------- /tiptapy/templates/extras/audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/extras/audio.html -------------------------------------------------------------------------------- /tiptapy/templates/extras/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/extras/document.html -------------------------------------------------------------------------------- /tiptapy/templates/extras/featuredimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/extras/featuredimage.html -------------------------------------------------------------------------------- /tiptapy/templates/hardBreak.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /tiptapy/templates/hard_break.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /tiptapy/templates/heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/heading.html -------------------------------------------------------------------------------- /tiptapy/templates/horizontalRule.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tiptapy/templates/horizontal_rule.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tiptapy/templates/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/image.html -------------------------------------------------------------------------------- /tiptapy/templates/listItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/listItem.html -------------------------------------------------------------------------------- /tiptapy/templates/list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/list_item.html -------------------------------------------------------------------------------- /tiptapy/templates/marks/bold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/marks/bold.html -------------------------------------------------------------------------------- /tiptapy/templates/marks/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/marks/code.html -------------------------------------------------------------------------------- /tiptapy/templates/marks/italic.html: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /tiptapy/templates/marks/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/marks/link.html -------------------------------------------------------------------------------- /tiptapy/templates/marks/sup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/marks/sup.html -------------------------------------------------------------------------------- /tiptapy/templates/marks/underline.html: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /tiptapy/templates/orderedList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/orderedList.html -------------------------------------------------------------------------------- /tiptapy/templates/ordered_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/ordered_list.html -------------------------------------------------------------------------------- /tiptapy/templates/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/paragraph.html -------------------------------------------------------------------------------- /tiptapy/templates/stack-audio-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/stack-audio-player.html -------------------------------------------------------------------------------- /tiptapy/templates/stack-document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/stack-document.html -------------------------------------------------------------------------------- /tiptapy/templates/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/text.html -------------------------------------------------------------------------------- /tiptapy/templates/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stckme/tiptapy/HEAD/tiptapy/templates/title.html --------------------------------------------------------------------------------