summaryrefslogtreecommitdiff
path: root/packages/markdown-support/src (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-07-12Add support for named slots (#661)Gravatar Nate Moore 2-2/+2
* feat: support named slots, slot fallback content * docs: document slots * chore: add changeset * fix: build errors * chore: prefer `patch` version
2021-07-07[ci] yarn formatGravatar natemoo-re 4-19/+26
2021-07-01Expose `content.astro.html` to `Astro.fetchContent` (#583)Gravatar Nate Moore 1-1/+1
* feat: expose `content.astro.html` to Astro.fetchContent * docs: add `astro.html` note to docs
2021-07-01Remark and rehype plugins (#562)Gravatar Pavel Mineev 6-29/+108
* remark plugins * remove unused dependency * enable codeblocks * backward compatibility with remark-code-titles * add support for rehype plugins * add proper types for plugins * fixes after review - connect plugins by name - make plugins configurable - connect gfm and footnotes if no plugins provided from config - add more plugins to example * update and rename example * add documentation for markdown plugins * chore: rename with-markdown-plugins example * chore: restructure dependencies * feat: add back smartypants, fix mdx expressions * chore: remove log * test: add markdown plugin tests * chore: add changeset * docs: update markdown doc Co-authored-by: Nate Moore <nate@skypack.dev>
2021-06-04[ci] yarn formatGravatar matthewp 2-2/+2
2021-06-04Use npm package names to load internal deps (#294)Gravatar Matthew Phillips 5-0/+166
* Use npm package names to load internal deps This is necessary so that published Astro components work. These components will be built by esinstall and therefore they cannot rely on `_astro_internal`. The fix is to use npm specifiers everywhere. * Move most of frontend to internal * Mark astro/internal/markdown.js as external * Move markdown stuff to its own package This moves the markdown stuff to its own package so that we can externalize it in the markdown component. * Add the changeset