├── .codeclimate.yml ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ └── ---start-a-discussion.md └── workflows │ ├── ci.yml │ ├── docs.yml │ ├── perf.yml │ ├── prerelease.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .idea └── workspace.xml ├── .npmignore ├── .nvmrc ├── .vscode ├── launch.json └── settings.json ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FYI.md ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.js ├── commonmark-spec.d.ts ├── eslint.config.mjs ├── lerna.json ├── package.json ├── packages └── @atjson │ ├── document │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── annotation.ts │ │ ├── annotations │ │ │ ├── block.ts │ │ │ ├── index.ts │ │ │ ├── inline.ts │ │ │ ├── object.ts │ │ │ ├── parse.ts │ │ │ ├── slice.ts │ │ │ ├── text.ts │ │ │ └── unknown.ts │ │ ├── attributes.ts │ │ ├── change.ts │ │ ├── collection.ts │ │ ├── document.ts │ │ ├── index.ts │ │ ├── internals.ts │ │ ├── join.ts │ │ ├── json.ts │ │ ├── serialize.ts │ │ └── utils.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── with-stable-ids.test.ts.snap │ │ ├── annotation.test.ts │ │ ├── atjson-insert.test.ts │ │ ├── atjson.test.ts │ │ ├── converter.test.ts │ │ ├── document.test.ts │ │ ├── equals.test.ts │ │ ├── nested-slices.test.ts │ │ ├── query.test.ts │ │ ├── serialize.test.ts │ │ ├── test-source.ts │ │ ├── text-source.test.ts │ │ └── with-stable-ids.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── hir │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── annotations │ │ │ ├── index.ts │ │ │ ├── root.ts │ │ │ └── text.ts │ │ ├── hir-node.ts │ │ ├── hir.ts │ │ ├── index.ts │ │ └── json-node.ts │ ├── test │ │ ├── hir-node.test.ts │ │ ├── hir.test.ts │ │ ├── test-source.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── offset-annotations │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── annotations │ │ │ ├── accordion.ts │ │ │ ├── blockquote.ts │ │ │ ├── bluesky-embed.ts │ │ │ ├── bold.ts │ │ │ ├── ceros-embed.ts │ │ │ ├── cne-audio-embed.ts │ │ │ ├── cne-event-registration-embed.ts │ │ │ ├── code-block.ts │ │ │ ├── code.ts │ │ │ ├── data-set.ts │ │ │ ├── facebook-embed.ts │ │ │ ├── firework-embed.ts │ │ │ ├── fixed-indent.ts │ │ │ ├── giphy-embed.ts │ │ │ ├── group-item.ts │ │ │ ├── group.ts │ │ │ ├── heading.ts │ │ │ ├── horizontal-rule.ts │ │ │ ├── html.ts │ │ │ ├── iframe-embed.ts │ │ │ ├── image.ts │ │ │ ├── index.ts │ │ │ ├── instagram-embed.ts │ │ │ ├── italic.ts │ │ │ ├── line-break.ts │ │ │ ├── link.ts │ │ │ ├── list-item.ts │ │ │ ├── list.ts │ │ │ ├── mastodon-embed.ts │ │ │ ├── paragraph.ts │ │ │ ├── pinterest-embed.ts │ │ │ ├── pullquote.ts │ │ │ ├── reddit-embed.ts │ │ │ ├── section.ts │ │ │ ├── sidebar.ts │ │ │ ├── small-caps.ts │ │ │ ├── strikethrough.ts │ │ │ ├── subscript.ts │ │ │ ├── superscript.ts │ │ │ ├── table-of-contents.ts │ │ │ ├── table.ts │ │ │ ├── threads-embed.ts │ │ │ ├── tiktok-embed.ts │ │ │ ├── twitter-embed.ts │ │ │ ├── underline.ts │ │ │ └── video-embed.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── aspect-ratios.ts │ │ │ ├── convert-html-tables.ts │ │ │ ├── enums.ts │ │ │ ├── index.ts │ │ │ ├── social-urls.ts │ │ │ └── video-urls.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── data-set.test.ts.snap │ │ ├── aspect-ratio.test.ts │ │ ├── data-set.test.ts │ │ ├── social-urls.test.ts │ │ └── video-canonicalisation.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── peritext │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── test │ │ └── peritext-builder.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── react │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── Node.ts │ │ │ ├── Slice.ts │ │ │ └── index.ts │ │ ├── contexts │ │ │ ├── Component.ts │ │ │ ├── DataSet.ts │ │ │ ├── Slice.ts │ │ │ └── index.ts │ │ ├── hooks │ │ │ └── useDataSet.ts │ │ └── index.ts │ ├── test │ │ ├── children.test.tsx │ │ ├── data-set.test.tsx │ │ └── slice.test.tsx │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── renderer-commonmark │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── punctuation.ts │ ├── test │ │ ├── __snapshots__ │ │ │ ├── commonmark-spec.test.ts.snap │ │ │ └── table.test.ts.snap │ │ ├── adjacent-inline.test.ts │ │ ├── commonmark-spec.d.ts │ │ ├── commonmark-spec.test.ts │ │ ├── commonmark.test.ts │ │ ├── escaped-text.test.ts │ │ ├── line-break.test.ts │ │ ├── slice.test.ts │ │ └── table.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── renderer-graphviz │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── example.dot │ ├── example.png │ ├── package.json │ ├── src │ │ └── index.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── graphviz.test.ts.snap │ │ └── graphviz.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── renderer-hir │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── test │ │ └── renderer-hir.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── renderer-html │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── table.test.ts.snap │ │ ├── bluesky-embed.test.ts │ │ ├── encoding.test.ts │ │ ├── facebook-embed.test.ts │ │ ├── instagram-embed.test.ts │ │ ├── mastodon-embed.test.ts │ │ ├── reddit-embed.test.ts │ │ ├── renderer.test.ts │ │ ├── table.test.ts │ │ ├── threads-embed.test.ts │ │ ├── tiktok-embed.test.ts │ │ └── twitter-embed.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── renderer-plain-text │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── test │ │ └── text-renderer.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── renderer-react │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── test │ │ └── react-renderer.test.tsx │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── source-ckeditor │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ │ └── index.ts │ ├── package.json │ ├── src │ │ ├── ckeditor.ts │ │ ├── index.ts │ │ ├── source.ts │ │ ├── types │ │ │ └── @ckeditor │ │ │ │ ├── ckeditor5-build-classic │ │ │ │ └── index.d.ts │ │ │ │ └── ckeditor5-engine │ │ │ │ └── index.d.ts │ │ └── utils.ts │ ├── test │ │ ├── source-ckeditor-build-classic │ │ │ ├── annotations │ │ │ │ ├── $root.ts │ │ │ │ ├── $text.ts │ │ │ │ ├── block-quote.ts │ │ │ │ ├── caption.ts │ │ │ │ ├── heading1.ts │ │ │ │ ├── heading2.ts │ │ │ │ ├── heading3.ts │ │ │ │ ├── image.ts │ │ │ │ ├── index.ts │ │ │ │ ├── list-item.ts │ │ │ │ ├── media.ts │ │ │ │ ├── paragraph.ts │ │ │ │ ├── soft-break.ts │ │ │ │ ├── table-cell.ts │ │ │ │ ├── table-row.ts │ │ │ │ └── table.ts │ │ │ ├── index.ts │ │ │ └── source.ts │ │ ├── source-classic-build-editor.test.ts │ │ └── source-classic-build.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── source-commonmark │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── annotations │ │ │ ├── blockquote.ts │ │ │ ├── bullet_list.ts │ │ │ ├── code_block.ts │ │ │ ├── code_inline.ts │ │ │ ├── emphasis.ts │ │ │ ├── fence.ts │ │ │ ├── hardbreak.ts │ │ │ ├── heading.ts │ │ │ ├── horizontal_rule.ts │ │ │ ├── html_block.ts │ │ │ ├── html_inline.ts │ │ │ ├── image.ts │ │ │ ├── index.ts │ │ │ ├── link.ts │ │ │ ├── list_item.ts │ │ │ ├── ordered_list.ts │ │ │ ├── paragraph.ts │ │ │ ├── strong.ts │ │ │ ├── table-body-cell.ts │ │ │ ├── table-body-section.ts │ │ │ ├── table-head-cell.ts │ │ │ ├── table-head-section.ts │ │ │ ├── table-row.ts │ │ │ └── table.ts │ │ ├── converter │ │ │ ├── image.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── parser.ts │ │ └── source.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── extensions.test.ts.snap │ │ ├── commonmark.test.ts │ │ ├── extensions.test.ts │ │ ├── serialize.test.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── source-gdocs-paste │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── content-documentation.md │ ├── package.json │ ├── public │ │ ├── app.js │ │ ├── index.html │ │ ├── invisible-cities.json │ │ └── style.css │ ├── src │ │ ├── annotations │ │ │ ├── alignment.ts │ │ │ ├── bold.ts │ │ │ ├── font-size.ts │ │ │ ├── heading.ts │ │ │ ├── horizontal-rule.ts │ │ │ ├── indent-left.ts │ │ │ ├── index.ts │ │ │ ├── italic.ts │ │ │ ├── link.ts │ │ │ ├── list-item.ts │ │ │ ├── list.ts │ │ │ ├── small-caps.ts │ │ │ ├── strikethrough.ts │ │ │ ├── underline.ts │ │ │ └── vertical-adjust.ts │ │ ├── converter │ │ │ ├── dropcaps.ts │ │ │ ├── index.ts │ │ │ ├── smallcaps.ts │ │ │ └── tables.ts │ │ ├── gdocs-parser.ts │ │ ├── horizontal-rule.ts │ │ ├── index.ts │ │ ├── link-styles.ts │ │ ├── list-styles.ts │ │ ├── paragraph-styles.ts │ │ ├── source.ts │ │ ├── text-styles.ts │ │ └── types.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── source.test.ts.snap │ │ ├── block-quote.test.ts │ │ ├── converter.test.ts │ │ ├── drop-caps.test.ts │ │ ├── fixtures │ │ │ ├── block-quote.json │ │ │ ├── complex.json │ │ │ ├── drop-cap-shorthand.json │ │ │ ├── formats-and-tabs.json │ │ │ ├── heading-alignment.json │ │ │ ├── line-breaks.json │ │ │ ├── list-styles-partial.json │ │ │ ├── list-styles.json │ │ │ ├── list-with-interrupting-paragraph.json │ │ │ ├── paragraph-alignment.json │ │ │ ├── paragraphs.json │ │ │ ├── partial.json │ │ │ ├── rtl-paragraph-alignment.json │ │ │ ├── small-caps-shorthand.json │ │ │ ├── small-caps.json │ │ │ ├── table.json │ │ │ └── underline.json │ │ ├── small-caps.test.ts │ │ ├── source.test.ts │ │ ├── table.test.ts │ │ └── text-alignment.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── source-html │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── public │ │ ├── app.js │ │ ├── index.html │ │ ├── invisible-cities.html │ │ └── style.css │ ├── scripts │ │ ├── class-names.json │ │ ├── generate-annotation-names.ts │ │ ├── generate-annotations.ts │ │ └── utils.ts │ ├── src │ │ ├── annotations │ │ │ ├── a.ts │ │ │ ├── abbr.ts │ │ │ ├── address.ts │ │ │ ├── area.ts │ │ │ ├── article.ts │ │ │ ├── aside.ts │ │ │ ├── audio.ts │ │ │ ├── b.ts │ │ │ ├── base.ts │ │ │ ├── bdi.ts │ │ │ ├── bdo.ts │ │ │ ├── blockquote.ts │ │ │ ├── body.ts │ │ │ ├── br.ts │ │ │ ├── button.ts │ │ │ ├── canvas.ts │ │ │ ├── caption.ts │ │ │ ├── cite.ts │ │ │ ├── cne-event-registration-embed.ts │ │ │ ├── code.ts │ │ │ ├── col.ts │ │ │ ├── colgroup.ts │ │ │ ├── data.ts │ │ │ ├── datalist.ts │ │ │ ├── dd.ts │ │ │ ├── del.ts │ │ │ ├── details.ts │ │ │ ├── dfn.ts │ │ │ ├── dialog.ts │ │ │ ├── div.ts │ │ │ ├── dl.ts │ │ │ ├── dt.ts │ │ │ ├── em.ts │ │ │ ├── embed.ts │ │ │ ├── fieldset.ts │ │ │ ├── figcaption.ts │ │ │ ├── figure.ts │ │ │ ├── firework-embed.ts │ │ │ ├── footer.ts │ │ │ ├── form.ts │ │ │ ├── h1.ts │ │ │ ├── h2.ts │ │ │ ├── h3.ts │ │ │ ├── h4.ts │ │ │ ├── h5.ts │ │ │ ├── h6.ts │ │ │ ├── head.ts │ │ │ ├── header.ts │ │ │ ├── hgroup.ts │ │ │ ├── hr.ts │ │ │ ├── html.ts │ │ │ ├── i.ts │ │ │ ├── iframe.ts │ │ │ ├── img.ts │ │ │ ├── index.ts │ │ │ ├── input.ts │ │ │ ├── ins.ts │ │ │ ├── kbd.ts │ │ │ ├── label.ts │ │ │ ├── legend.ts │ │ │ ├── li.ts │ │ │ ├── link.ts │ │ │ ├── main.ts │ │ │ ├── map.ts │ │ │ ├── mark.ts │ │ │ ├── menu.ts │ │ │ ├── meta.ts │ │ │ ├── meter.ts │ │ │ ├── nav.ts │ │ │ ├── noscript.ts │ │ │ ├── object.ts │ │ │ ├── ol.ts │ │ │ ├── optgroup.ts │ │ │ ├── option.ts │ │ │ ├── output.ts │ │ │ ├── p.ts │ │ │ ├── param.ts │ │ │ ├── picture.ts │ │ │ ├── pre.ts │ │ │ ├── progress.ts │ │ │ ├── q.ts │ │ │ ├── rp.ts │ │ │ ├── rt.ts │ │ │ ├── ruby.ts │ │ │ ├── s.ts │ │ │ ├── samp.ts │ │ │ ├── script.ts │ │ │ ├── section.ts │ │ │ ├── select.ts │ │ │ ├── slot.ts │ │ │ ├── small.ts │ │ │ ├── source.ts │ │ │ ├── span.ts │ │ │ ├── strong.ts │ │ │ ├── style.ts │ │ │ ├── sub.ts │ │ │ ├── summary.ts │ │ │ ├── sup.ts │ │ │ ├── table.ts │ │ │ ├── tbody.ts │ │ │ ├── td.ts │ │ │ ├── template.ts │ │ │ ├── textarea.ts │ │ │ ├── tfoot.ts │ │ │ ├── th.ts │ │ │ ├── thead.ts │ │ │ ├── time.ts │ │ │ ├── title.ts │ │ │ ├── tr.ts │ │ │ ├── track.ts │ │ │ ├── u.ts │ │ │ ├── ul.ts │ │ │ ├── var.ts │ │ │ ├── video.ts │ │ │ └── wbr.ts │ │ ├── converter │ │ │ ├── headings.ts │ │ │ ├── index.ts │ │ │ ├── paragraphs.ts │ │ │ ├── social-embeds.ts │ │ │ ├── third-party-embeds.ts │ │ │ ├── utils.ts │ │ │ └── video-embeds.ts │ │ ├── global-attributes.ts │ │ ├── index.ts │ │ ├── parser.ts │ │ └── source.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── table.test.ts.snap │ │ ├── blockquote.test.ts │ │ ├── bluesky-embed.test.ts │ │ ├── bold.test.ts │ │ ├── ceros-embed.test.ts │ │ ├── cne-audio-embed.test.ts │ │ ├── cne-event-registration-embed.test.ts │ │ ├── converter.test.ts │ │ ├── facebook-embed.test.ts │ │ ├── firework-embed.test.ts │ │ ├── giphy-embed.test.ts │ │ ├── heading.test.ts │ │ ├── iframe-embed.test.ts │ │ ├── instagram-embed.test.ts │ │ ├── italic.test.ts │ │ ├── mastodon-embed.test.ts │ │ ├── paragraph.test.ts │ │ ├── reddit-embed.test.ts │ │ ├── source-html.test.ts │ │ ├── strikethrough.test.ts │ │ ├── table.test.ts │ │ ├── threads-embed.test.ts │ │ ├── tiktok-embed.test.ts │ │ ├── twitter-embed.test.ts │ │ └── video-embed.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── source-mobiledoc │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── annotations │ │ │ ├── anchor.ts │ │ │ ├── aside.ts │ │ │ ├── blockquote.ts │ │ │ ├── bold.ts │ │ │ ├── code.ts │ │ │ ├── emphasis.ts │ │ │ ├── heading-1.ts │ │ │ ├── heading-2.ts │ │ │ ├── heading-3.ts │ │ │ ├── heading-4.ts │ │ │ ├── heading-5.ts │ │ │ ├── heading-6.ts │ │ │ ├── image.ts │ │ │ ├── index.ts │ │ │ ├── italic.ts │ │ │ ├── list-item.ts │ │ │ ├── ordered-list.ts │ │ │ ├── paragraph.ts │ │ │ ├── pull-quote.ts │ │ │ ├── strikethrough.ts │ │ │ ├── strong.ts │ │ │ ├── subscript.ts │ │ │ ├── superscript.ts │ │ │ ├── underline.ts │ │ │ └── unordered-list.ts │ │ ├── converter.ts │ │ ├── index.ts │ │ ├── parser.ts │ │ └── source.ts │ ├── test │ │ └── source-mobiledoc.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── source-prism │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── public │ │ ├── app.js │ │ ├── gq-fresh-paint.xml │ │ ├── index.html │ │ └── style.css │ ├── src │ │ ├── annotations │ │ │ ├── article.ts │ │ │ ├── description.ts │ │ │ ├── index.ts │ │ │ ├── media.ts │ │ │ ├── message.ts │ │ │ └── title.ts │ │ ├── converter.ts │ │ ├── index.ts │ │ └── source.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── prism.test.ts.snap │ │ ├── fixtures │ │ │ ├── gq-fresh-paint.xml │ │ │ ├── gq-santoni.xml │ │ │ └── gq-yuketen.xml │ │ └── prism.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── source-url │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── public │ │ ├── app.js │ │ ├── index.html │ │ └── style.css │ ├── src │ │ ├── annotations │ │ │ ├── index.ts │ │ │ └── url.ts │ │ ├── converter.ts │ │ ├── index.ts │ │ └── source.ts │ ├── test │ │ ├── threads-embed.test.ts │ │ └── url.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ ├── source-wordpress-shortcode │ ├── .npmignore │ ├── .npmrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── annotations │ │ │ ├── index.ts │ │ │ └── shortcode.ts │ │ ├── index.ts │ │ └── source.ts │ ├── test │ │ └── source.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json │ └── util │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ └── index.ts │ ├── test │ ├── create-tree.test.ts │ └── extract-slices.test.ts │ ├── tsconfig.json │ └── tsconfig.modules.json ├── perf-kit ├── README.md ├── anonymize-fixtures.ts ├── fixtures │ ├── index.ts │ ├── list-of-names.md │ ├── list-of-releases.md │ ├── list-of-sections.md │ ├── long-list-of-links.md │ └── long-list-of-lists.md └── index.ts ├── public ├── annotated-document.png ├── hir-document.png ├── missy-elliott-annotated.png ├── missy-elliott.png ├── original-document.png ├── war-and-peace-annotated.png └── war-and-peace.png ├── renovate.json ├── tests ├── README.md ├── fixtures │ └── html │ │ ├── bluesky.html │ │ ├── ceros-with-mobile-aspect-ratio.html │ │ ├── ceros.html │ │ ├── instagram-with-caption.html │ │ ├── instagram-without-caption.html │ │ ├── mastodon.html │ │ ├── paragraph.html │ │ ├── reddit.html │ │ ├── threads.html │ │ ├── tiktok.html │ │ └── twitter.html └── html-round-trip.test.ts ├── tsconfig.json └── website ├── .gitignore ├── docs ├── analysis.md ├── ckeditor-source.md ├── code-style.md ├── converters.md ├── custom-renderer.md ├── document-api.mdx ├── getting-started.mdx ├── glossary.md ├── google-docs-explainer.md ├── google-docs-paste.md ├── html-renderer.md ├── html-source.md ├── machine-learning.md ├── markdown-renderer.md ├── markdown-source.md ├── mobiledoc-source.md ├── performance.md ├── prior-art.md ├── prism-source.md ├── querying.md ├── react-renderer.mdx ├── storage.mdx ├── structure.md ├── updating-documents.md ├── url-paste.md ├── util-api.mdx └── wordpress-shortcode-source.mdx ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.json ├── src ├── components │ ├── Button.tsx │ ├── CharacterOffsetViewer.tsx │ ├── GDocsPasteDemo.tsx │ ├── HTMLRendererDemo.tsx │ ├── QuickBrownFox.tsx │ ├── TextArea.tsx │ ├── TextField.tsx │ ├── URLPaste.tsx │ └── hooks.ts ├── css │ └── custom.css └── pages │ ├── index.js │ └── styles.module.css ├── static └── img │ ├── atjson.png │ ├── conde-nast-dark.svg │ ├── conde-nast.svg │ ├── favicon.ico │ └── logo.svg └── tsconfig.json /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---start-a-discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.github/ISSUE_TEMPLATE/---start-a-discussion.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.github/workflows/perf.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.19.5 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | workspaces-experimental true 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FYI.md: -------------------------------------------------------------------------------- 1 | https://cnissues.atlassian.net/wiki/spaces/ARCH/pages/126288041/atjson 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /commonmark-spec.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/commonmark-spec.d.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/package.json -------------------------------------------------------------------------------- /packages/@atjson/document/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/document/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/document/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/document/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/README.md -------------------------------------------------------------------------------- /packages/@atjson/document/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/package.json -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotation.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotations/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotations/block.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotations/inline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotations/inline.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotations/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotations/object.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotations/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotations/parse.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotations/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotations/slice.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotations/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotations/text.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/annotations/unknown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/annotations/unknown.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/attributes.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/change.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/collection.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/document.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/internals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/internals.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/join.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/json.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/serialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/serialize.ts -------------------------------------------------------------------------------- /packages/@atjson/document/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/src/utils.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/__snapshots__/with-stable-ids.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/__snapshots__/with-stable-ids.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/document/test/annotation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/annotation.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/atjson-insert.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/atjson-insert.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/atjson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/atjson.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/converter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/converter.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/document.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/document.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/equals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/equals.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/nested-slices.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/nested-slices.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/query.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/query.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/serialize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/serialize.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/test-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/test-source.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/text-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/text-source.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/test/with-stable-ids.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/test/with-stable-ids.test.ts -------------------------------------------------------------------------------- /packages/@atjson/document/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/document/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/document/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/hir/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/hir/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/hir/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/hir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/package.json -------------------------------------------------------------------------------- /packages/@atjson/hir/src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/src/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/src/annotations/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/src/annotations/root.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/src/annotations/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/src/annotations/text.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/src/hir-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/src/hir-node.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/src/hir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/src/hir.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/src/json-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/src/json-node.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/test/hir-node.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/test/hir-node.test.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/test/hir.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/test/hir.test.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/test/test-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/test/test-source.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/test/utils.ts -------------------------------------------------------------------------------- /packages/@atjson/hir/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/hir/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/hir/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/package.json -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/accordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/accordion.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/blockquote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/blockquote.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/bluesky-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/bluesky-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/bold.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/ceros-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/ceros-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/cne-audio-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/cne-audio-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/cne-event-registration-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/cne-event-registration-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/code-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/code-block.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/code.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/data-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/data-set.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/facebook-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/facebook-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/firework-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/firework-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/fixed-indent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/fixed-indent.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/giphy-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/giphy-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/group-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/group-item.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/group.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/heading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/heading.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/horizontal-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/horizontal-rule.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/html.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/iframe-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/iframe-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/image.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/instagram-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/instagram-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/italic.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/line-break.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/line-break.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/link.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/list-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/list-item.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/list.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/mastodon-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/mastodon-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/paragraph.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/pinterest-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/pinterest-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/pullquote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/pullquote.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/reddit-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/reddit-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/section.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/sidebar.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/small-caps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/small-caps.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/strikethrough.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/strikethrough.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/subscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/subscript.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/superscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/superscript.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/table-of-contents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/table-of-contents.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/table.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/threads-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/threads-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/tiktok-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/tiktok-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/twitter-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/twitter-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/underline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/underline.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/annotations/video-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/annotations/video-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/utils/aspect-ratios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/utils/aspect-ratios.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/utils/convert-html-tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/utils/convert-html-tables.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/utils/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/utils/enums.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/utils/index.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/utils/social-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/utils/social-urls.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/src/utils/video-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/src/utils/video-urls.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/test/__snapshots__/data-set.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/test/__snapshots__/data-set.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/test/aspect-ratio.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/test/aspect-ratio.test.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/test/data-set.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/test/data-set.test.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/test/social-urls.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/test/social-urls.test.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/test/video-canonicalisation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/test/video-canonicalisation.test.ts -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/offset-annotations/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/offset-annotations/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/peritext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/peritext/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/peritext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/peritext/README.md -------------------------------------------------------------------------------- /packages/@atjson/peritext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/peritext/package.json -------------------------------------------------------------------------------- /packages/@atjson/peritext/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/peritext/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/peritext/test/peritext-builder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/peritext/test/peritext-builder.test.ts -------------------------------------------------------------------------------- /packages/@atjson/peritext/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/peritext/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/peritext/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/peritext/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/react/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/README.md -------------------------------------------------------------------------------- /packages/@atjson/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/package.json -------------------------------------------------------------------------------- /packages/@atjson/react/src/components/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/components/Node.ts -------------------------------------------------------------------------------- /packages/@atjson/react/src/components/Slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/components/Slice.ts -------------------------------------------------------------------------------- /packages/@atjson/react/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/components/index.ts -------------------------------------------------------------------------------- /packages/@atjson/react/src/contexts/Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/contexts/Component.ts -------------------------------------------------------------------------------- /packages/@atjson/react/src/contexts/DataSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/contexts/DataSet.ts -------------------------------------------------------------------------------- /packages/@atjson/react/src/contexts/Slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/contexts/Slice.ts -------------------------------------------------------------------------------- /packages/@atjson/react/src/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/contexts/index.ts -------------------------------------------------------------------------------- /packages/@atjson/react/src/hooks/useDataSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/hooks/useDataSet.ts -------------------------------------------------------------------------------- /packages/@atjson/react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/react/test/children.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/test/children.test.tsx -------------------------------------------------------------------------------- /packages/@atjson/react/test/data-set.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/test/data-set.test.tsx -------------------------------------------------------------------------------- /packages/@atjson/react/test/slice.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/test/slice.test.tsx -------------------------------------------------------------------------------- /packages/@atjson/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/react/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/react/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/README.md: -------------------------------------------------------------------------------- 1 | # @atjson/renderer-commonmark 2 | 3 | A brand new TypeScript library. 4 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/package.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/src/lib/punctuation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/src/lib/punctuation.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/__snapshots__/commonmark-spec.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/__snapshots__/commonmark-spec.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/__snapshots__/table.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/__snapshots__/table.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/adjacent-inline.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/adjacent-inline.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/commonmark-spec.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/commonmark-spec.d.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/commonmark-spec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/commonmark-spec.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/commonmark.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/commonmark.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/escaped-text.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/escaped-text.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/line-break.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/line-break.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/slice.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/test/table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/test/table.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-commonmark/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-commonmark/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/README.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/example.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/example.dot -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/example.png -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/package.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/test/__snapshots__/graphviz.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/test/__snapshots__/graphviz.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/test/graphviz.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/test/graphviz.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-graphviz/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-graphviz/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-hir/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-hir/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-hir/README.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-hir/package.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-hir/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/test/renderer-hir.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-hir/test/renderer-hir.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-hir/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-hir/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-hir/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/README.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/package.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/__snapshots__/table.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/__snapshots__/table.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/bluesky-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/bluesky-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/encoding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/encoding.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/facebook-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/facebook-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/instagram-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/instagram-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/mastodon-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/mastodon-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/reddit-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/reddit-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/renderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/renderer.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/table.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/threads-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/threads-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/tiktok-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/tiktok-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/test/twitter-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/test/twitter-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-html/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-html/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-plain-text/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-plain-text/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/README.md: -------------------------------------------------------------------------------- 1 | # @atjson/renderer-plain-text 2 | 3 | A brand new TypeScript library. 4 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-plain-text/package.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-plain-text/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/test/text-renderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-plain-text/test/text-renderer.test.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-plain-text/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-plain-text/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-plain-text/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-react/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-react/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/README.md: -------------------------------------------------------------------------------- 1 | # @atjson/renderer-react 2 | 3 | A brand new TypeScript library. 4 | -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-react/package.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-react/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/test/react-renderer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-react/test/react-renderer.test.tsx -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-react/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/renderer-react/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/renderer-react/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/README.md -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/bin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/bin/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/package.json -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/src/ckeditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/src/ckeditor.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/src/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/src/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/src/types/@ckeditor/ckeditor5-build-classic/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/src/types/@ckeditor/ckeditor5-build-classic/index.d.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/src/types/@ckeditor/ckeditor5-engine/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/src/types/@ckeditor/ckeditor5-engine/index.d.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/src/utils.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/$root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/$root.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/$text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/$text.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/block-quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/block-quote.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/caption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/caption.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/heading1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/heading1.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/heading2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/heading2.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/heading3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/heading3.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/image.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/list-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/list-item.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/media.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/paragraph.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/soft-break.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/soft-break.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/table-cell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/table-cell.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/table-row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/table-row.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/annotations/table.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-ckeditor-build-classic/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-classic-build-editor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-classic-build-editor.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/test/source-classic-build.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/test/source-classic-build.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/source-ckeditor/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-ckeditor/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/README.md -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/package.json -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/blockquote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/blockquote.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/bullet_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/bullet_list.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/code_block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/code_block.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/code_inline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/code_inline.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/emphasis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/emphasis.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/fence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/fence.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/hardbreak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/hardbreak.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/heading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/heading.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/horizontal_rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/horizontal_rule.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/html_block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/html_block.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/html_inline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/html_inline.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/image.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/link.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/list_item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/list_item.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/ordered_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/ordered_list.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/paragraph.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/strong.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/strong.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/table-body-cell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/table-body-cell.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/table-body-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/table-body-section.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/table-head-cell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/table-head-cell.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/table-head-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/table-head-section.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/table-row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/table-row.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/annotations/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/annotations/table.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/converter/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/converter/image.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/converter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/converter/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/parser.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/src/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/src/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/test/__snapshots__/extensions.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/test/__snapshots__/extensions.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/test/commonmark.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/test/commonmark.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/test/extensions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/test/extensions.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/test/serialize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/test/serialize.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/test/utils.ts -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/source-commonmark/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-commonmark/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/README.md -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/content-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/content-documentation.md -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/package.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/public/app.js -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/public/index.html -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/public/invisible-cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/public/invisible-cities.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/public/style.css -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/alignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/alignment.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/bold.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/font-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/font-size.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/heading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/heading.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/horizontal-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/horizontal-rule.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/indent-left.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/indent-left.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/italic.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/link.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/list-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/list-item.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/list.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/small-caps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/small-caps.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/strikethrough.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/strikethrough.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/underline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/underline.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/annotations/vertical-adjust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/annotations/vertical-adjust.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/converter/dropcaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/converter/dropcaps.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/converter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/converter/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/converter/smallcaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/converter/smallcaps.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/converter/tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/converter/tables.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/gdocs-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/gdocs-parser.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/horizontal-rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/horizontal-rule.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/link-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/link-styles.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/list-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/list-styles.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/paragraph-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/paragraph-styles.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/text-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/text-styles.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/src/types.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/__snapshots__/source.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/__snapshots__/source.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/block-quote.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/block-quote.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/converter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/converter.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/drop-caps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/drop-caps.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/block-quote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/block-quote.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/complex.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/drop-cap-shorthand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/drop-cap-shorthand.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/formats-and-tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/formats-and-tabs.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/heading-alignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/heading-alignment.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/line-breaks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/line-breaks.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/list-styles-partial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/list-styles-partial.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/list-styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/list-styles.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/list-with-interrupting-paragraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/list-with-interrupting-paragraph.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/paragraph-alignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/paragraph-alignment.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/paragraphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/paragraphs.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/partial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/partial.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/rtl-paragraph-alignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/rtl-paragraph-alignment.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/small-caps-shorthand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/small-caps-shorthand.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/small-caps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/small-caps.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/table.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/fixtures/underline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/fixtures/underline.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/small-caps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/small-caps.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/source.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/table.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/test/text-alignment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/test/text-alignment.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/source-gdocs-paste/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-gdocs-paste/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/source-html/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/source-html/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-html/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/source-html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/README.md -------------------------------------------------------------------------------- /packages/@atjson/source-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/package.json -------------------------------------------------------------------------------- /packages/@atjson/source-html/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/public/app.js -------------------------------------------------------------------------------- /packages/@atjson/source-html/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/public/index.html -------------------------------------------------------------------------------- /packages/@atjson/source-html/public/invisible-cities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/public/invisible-cities.html -------------------------------------------------------------------------------- /packages/@atjson/source-html/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/public/style.css -------------------------------------------------------------------------------- /packages/@atjson/source-html/scripts/class-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/scripts/class-names.json -------------------------------------------------------------------------------- /packages/@atjson/source-html/scripts/generate-annotation-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/scripts/generate-annotation-names.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/scripts/generate-annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/scripts/generate-annotations.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/scripts/utils.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/a.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/abbr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/abbr.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/address.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/area.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/article.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/aside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/aside.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/audio.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/b.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/base.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/bdi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/bdi.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/bdo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/bdo.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/blockquote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/blockquote.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/body.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/br.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/br.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/button.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/canvas.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/caption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/caption.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/cite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/cite.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/cne-event-registration-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/cne-event-registration-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/code.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/col.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/col.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/colgroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/colgroup.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/data.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/datalist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/datalist.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/dd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/dd.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/del.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/del.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/details.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/dfn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/dfn.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/dialog.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/div.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/div.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/dl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/dl.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/dt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/dt.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/em.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/em.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/embed.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/fieldset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/fieldset.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/figcaption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/figcaption.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/figure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/figure.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/firework-embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/firework-embed.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/footer.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/form.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/h1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/h1.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/h2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/h2.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/h3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/h3.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/h4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/h4.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/h5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/h5.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/h6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/h6.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/head.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/head.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/header.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/hgroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/hgroup.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/hr.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/html.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/i.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/i.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/iframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/iframe.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/img.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/img.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/input.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/ins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/ins.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/kbd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/kbd.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/label.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/legend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/legend.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/li.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/li.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/link.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/main.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/map.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/mark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/mark.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/menu.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/meta.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/meter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/meter.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/nav.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/noscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/noscript.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/object.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/ol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/ol.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/optgroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/optgroup.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/option.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/output.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/p.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/p.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/param.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/picture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/picture.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/pre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/pre.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/progress.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/q.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/q.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/rp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/rp.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/rt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/rt.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/ruby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/ruby.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/s.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/s.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/samp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/samp.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/script.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/section.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/select.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/slot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/slot.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/small.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/small.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/span.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/strong.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/strong.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/style.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/sub.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/summary.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/sup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/sup.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/table.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/tbody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/tbody.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/td.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/td.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/template.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/textarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/textarea.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/tfoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/tfoot.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/th.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/thead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/thead.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/time.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/title.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/tr.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/track.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/u.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/u.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/ul.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/ul.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/var.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/video.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/annotations/wbr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/annotations/wbr.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/converter/headings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/converter/headings.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/converter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/converter/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/converter/paragraphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/converter/paragraphs.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/converter/social-embeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/converter/social-embeds.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/converter/third-party-embeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/converter/third-party-embeds.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/converter/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/converter/utils.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/converter/video-embeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/converter/video-embeds.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/global-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/global-attributes.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/parser.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/src/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/src/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/__snapshots__/table.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/__snapshots__/table.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/blockquote.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/blockquote.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/bluesky-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/bluesky-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/bold.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/bold.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/ceros-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/ceros-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/cne-audio-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/cne-audio-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/cne-event-registration-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/cne-event-registration-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/converter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/converter.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/facebook-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/facebook-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/firework-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/firework-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/giphy-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/giphy-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/heading.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/heading.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/iframe-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/iframe-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/instagram-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/instagram-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/italic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/italic.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/mastodon-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/mastodon-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/paragraph.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/paragraph.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/reddit-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/reddit-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/source-html.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/source-html.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/strikethrough.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/strikethrough.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/table.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/threads-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/threads-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/tiktok-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/tiktok-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/twitter-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/twitter-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/test/video-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/test/video-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-html/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/source-html/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-html/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/README.md -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/package.json -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/anchor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/anchor.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/aside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/aside.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/blockquote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/blockquote.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/bold.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/code.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/emphasis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/emphasis.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/heading-1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/heading-1.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/heading-2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/heading-2.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/heading-3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/heading-3.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/heading-4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/heading-4.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/heading-5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/heading-5.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/heading-6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/heading-6.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/image.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/italic.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/list-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/list-item.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/ordered-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/ordered-list.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/paragraph.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/pull-quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/pull-quote.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/strikethrough.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/strikethrough.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/strong.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/strong.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/subscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/subscript.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/superscript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/superscript.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/underline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/underline.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/annotations/unordered-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/annotations/unordered-list.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/converter.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/parser.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/src/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/src/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/test/source-mobiledoc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/test/source-mobiledoc.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/source-mobiledoc/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-mobiledoc/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/source-prism/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/source-prism/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-prism/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/source-prism/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/README.md -------------------------------------------------------------------------------- /packages/@atjson/source-prism/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/package.json -------------------------------------------------------------------------------- /packages/@atjson/source-prism/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/public/app.js -------------------------------------------------------------------------------- /packages/@atjson/source-prism/public/gq-fresh-paint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/public/gq-fresh-paint.xml -------------------------------------------------------------------------------- /packages/@atjson/source-prism/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/public/index.html -------------------------------------------------------------------------------- /packages/@atjson/source-prism/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/public/style.css -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/annotations/article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/annotations/article.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/annotations/description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/annotations/description.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/annotations/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/annotations/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/annotations/media.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/annotations/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/annotations/message.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/annotations/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/annotations/title.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/converter.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/src/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/src/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/test/__snapshots__/prism.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/test/__snapshots__/prism.test.ts.snap -------------------------------------------------------------------------------- /packages/@atjson/source-prism/test/fixtures/gq-fresh-paint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/test/fixtures/gq-fresh-paint.xml -------------------------------------------------------------------------------- /packages/@atjson/source-prism/test/fixtures/gq-santoni.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/test/fixtures/gq-santoni.xml -------------------------------------------------------------------------------- /packages/@atjson/source-prism/test/fixtures/gq-yuketen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/test/fixtures/gq-yuketen.xml -------------------------------------------------------------------------------- /packages/@atjson/source-prism/test/prism.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/test/prism.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-prism/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/source-prism/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-prism/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/source-url/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/source-url/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-url/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/source-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/README.md -------------------------------------------------------------------------------- /packages/@atjson/source-url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/package.json -------------------------------------------------------------------------------- /packages/@atjson/source-url/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/public/app.js -------------------------------------------------------------------------------- /packages/@atjson/source-url/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/public/index.html -------------------------------------------------------------------------------- /packages/@atjson/source-url/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/public/style.css -------------------------------------------------------------------------------- /packages/@atjson/source-url/src/annotations/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./url"; 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-url/src/annotations/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/src/annotations/url.ts -------------------------------------------------------------------------------- /packages/@atjson/source-url/src/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/src/converter.ts -------------------------------------------------------------------------------- /packages/@atjson/source-url/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-url/src/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/src/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-url/test/threads-embed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/test/threads-embed.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-url/test/url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/test/url.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-url/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/source-url/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-url/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/.npmignore -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/README.md -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/package.json -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/src/annotations/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./shortcode"; 2 | -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/src/annotations/shortcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/src/annotations/shortcode.ts -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/src/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/src/source.ts -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/test/source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/test/source.test.ts -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/source-wordpress-shortcode/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/source-wordpress-shortcode/tsconfig.modules.json -------------------------------------------------------------------------------- /packages/@atjson/util/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/util/CHANGELOG.md -------------------------------------------------------------------------------- /packages/@atjson/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/util/README.md -------------------------------------------------------------------------------- /packages/@atjson/util/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/util/package.json -------------------------------------------------------------------------------- /packages/@atjson/util/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/util/src/index.ts -------------------------------------------------------------------------------- /packages/@atjson/util/test/create-tree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/util/test/create-tree.test.ts -------------------------------------------------------------------------------- /packages/@atjson/util/test/extract-slices.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/util/test/extract-slices.test.ts -------------------------------------------------------------------------------- /packages/@atjson/util/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/util/tsconfig.json -------------------------------------------------------------------------------- /packages/@atjson/util/tsconfig.modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/packages/@atjson/util/tsconfig.modules.json -------------------------------------------------------------------------------- /perf-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/README.md -------------------------------------------------------------------------------- /perf-kit/anonymize-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/anonymize-fixtures.ts -------------------------------------------------------------------------------- /perf-kit/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/fixtures/index.ts -------------------------------------------------------------------------------- /perf-kit/fixtures/list-of-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/fixtures/list-of-names.md -------------------------------------------------------------------------------- /perf-kit/fixtures/list-of-releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/fixtures/list-of-releases.md -------------------------------------------------------------------------------- /perf-kit/fixtures/list-of-sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/fixtures/list-of-sections.md -------------------------------------------------------------------------------- /perf-kit/fixtures/long-list-of-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/fixtures/long-list-of-links.md -------------------------------------------------------------------------------- /perf-kit/fixtures/long-list-of-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/fixtures/long-list-of-lists.md -------------------------------------------------------------------------------- /perf-kit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/perf-kit/index.ts -------------------------------------------------------------------------------- /public/annotated-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/public/annotated-document.png -------------------------------------------------------------------------------- /public/hir-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/public/hir-document.png -------------------------------------------------------------------------------- /public/missy-elliott-annotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/public/missy-elliott-annotated.png -------------------------------------------------------------------------------- /public/missy-elliott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/public/missy-elliott.png -------------------------------------------------------------------------------- /public/original-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/public/original-document.png -------------------------------------------------------------------------------- /public/war-and-peace-annotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/public/war-and-peace-annotated.png -------------------------------------------------------------------------------- /public/war-and-peace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/public/war-and-peace.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/fixtures/html/bluesky.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/bluesky.html -------------------------------------------------------------------------------- /tests/fixtures/html/ceros-with-mobile-aspect-ratio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/ceros-with-mobile-aspect-ratio.html -------------------------------------------------------------------------------- /tests/fixtures/html/ceros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/ceros.html -------------------------------------------------------------------------------- /tests/fixtures/html/instagram-with-caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/instagram-with-caption.html -------------------------------------------------------------------------------- /tests/fixtures/html/instagram-without-caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/instagram-without-caption.html -------------------------------------------------------------------------------- /tests/fixtures/html/mastodon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/mastodon.html -------------------------------------------------------------------------------- /tests/fixtures/html/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/paragraph.html -------------------------------------------------------------------------------- /tests/fixtures/html/reddit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/reddit.html -------------------------------------------------------------------------------- /tests/fixtures/html/threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/threads.html -------------------------------------------------------------------------------- /tests/fixtures/html/tiktok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/tiktok.html -------------------------------------------------------------------------------- /tests/fixtures/html/twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/fixtures/html/twitter.html -------------------------------------------------------------------------------- /tests/html-round-trip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tests/html-round-trip.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/docs/analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/analysis.md -------------------------------------------------------------------------------- /website/docs/ckeditor-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/ckeditor-source.md -------------------------------------------------------------------------------- /website/docs/code-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/code-style.md -------------------------------------------------------------------------------- /website/docs/converters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/converters.md -------------------------------------------------------------------------------- /website/docs/custom-renderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/custom-renderer.md -------------------------------------------------------------------------------- /website/docs/document-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/document-api.mdx -------------------------------------------------------------------------------- /website/docs/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/getting-started.mdx -------------------------------------------------------------------------------- /website/docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/glossary.md -------------------------------------------------------------------------------- /website/docs/google-docs-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/google-docs-explainer.md -------------------------------------------------------------------------------- /website/docs/google-docs-paste.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/google-docs-paste.md -------------------------------------------------------------------------------- /website/docs/html-renderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/html-renderer.md -------------------------------------------------------------------------------- /website/docs/html-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/html-source.md -------------------------------------------------------------------------------- /website/docs/machine-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/machine-learning.md -------------------------------------------------------------------------------- /website/docs/markdown-renderer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/markdown-renderer.md -------------------------------------------------------------------------------- /website/docs/markdown-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/markdown-source.md -------------------------------------------------------------------------------- /website/docs/mobiledoc-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/mobiledoc-source.md -------------------------------------------------------------------------------- /website/docs/performance.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/docs/prior-art.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/prior-art.md -------------------------------------------------------------------------------- /website/docs/prism-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/prism-source.md -------------------------------------------------------------------------------- /website/docs/querying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/querying.md -------------------------------------------------------------------------------- /website/docs/react-renderer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/react-renderer.mdx -------------------------------------------------------------------------------- /website/docs/storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/storage.mdx -------------------------------------------------------------------------------- /website/docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/structure.md -------------------------------------------------------------------------------- /website/docs/updating-documents.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Updating Documents 3 | --- 4 | 5 | TK 6 | -------------------------------------------------------------------------------- /website/docs/url-paste.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/url-paste.md -------------------------------------------------------------------------------- /website/docs/util-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/util-api.mdx -------------------------------------------------------------------------------- /website/docs/wordpress-shortcode-source.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docs/wordpress-shortcode-source.mdx -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/sidebars.json -------------------------------------------------------------------------------- /website/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/Button.tsx -------------------------------------------------------------------------------- /website/src/components/CharacterOffsetViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/CharacterOffsetViewer.tsx -------------------------------------------------------------------------------- /website/src/components/GDocsPasteDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/GDocsPasteDemo.tsx -------------------------------------------------------------------------------- /website/src/components/HTMLRendererDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/HTMLRendererDemo.tsx -------------------------------------------------------------------------------- /website/src/components/QuickBrownFox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/QuickBrownFox.tsx -------------------------------------------------------------------------------- /website/src/components/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/TextArea.tsx -------------------------------------------------------------------------------- /website/src/components/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/TextField.tsx -------------------------------------------------------------------------------- /website/src/components/URLPaste.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/URLPaste.tsx -------------------------------------------------------------------------------- /website/src/components/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/components/hooks.ts -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/src/pages/styles.module.css -------------------------------------------------------------------------------- /website/static/img/atjson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/static/img/atjson.png -------------------------------------------------------------------------------- /website/static/img/conde-nast-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/static/img/conde-nast-dark.svg -------------------------------------------------------------------------------- /website/static/img/conde-nast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/static/img/conde-nast.svg -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CondeNast/atjson/HEAD/website/tsconfig.json --------------------------------------------------------------------------------