Compare commits
No commits in common. "4efe62525a7d2c2e17d4628f349c4659d0866db5" and "67b014587e4853698537abbbc4912bb5da0274e0" have entirely different histories.
4efe62525a
...
67b014587e
48 changed files with 107 additions and 63 deletions
1
.npmrc
1
.npmrc
|
@ -1,3 +1,2 @@
|
|||
engine-strict=true
|
||||
auto-install-peers=true
|
||||
publish-branch=slim
|
||||
|
|
12
README.md
12
README.md
|
@ -21,9 +21,7 @@
|
|||
<div align="center">
|
||||
<a href="https://beartocode.github.io/carta/">📚 Documentation</a>
|
||||
<span> · </span>
|
||||
<a href="https://code.thetadev.de/ThetaDev/carta">Source code</a>
|
||||
<span> · </span>
|
||||
<a href="https://github.com/BearToCode/carta">Original GitHub</a>
|
||||
<a href="https://github.com/BearToCode/carta">GitHub</a>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
@ -38,12 +36,6 @@
|
|||
Carta is a **lightweight**, **fast** and **extensible** Svelte Markdown editor and viewer. It is powered by [unified](https://github.com/unifiedjs/unified), [remark](https://github.com/remarkjs/remark) and [rehype](https://github.com/rehypejs/rehype). Check out the [examples](http://beartocode.github.io/carta/examples) to see it in action.
|
||||
Differently from most editors, Carta does not include a code editor, but it is _just_ a textarea with syntax highlighting, shortcuts and more.
|
||||
|
||||
This is a fork of carta which applies the following changes:
|
||||
|
||||
- Replace Shiki syntax higlighter with Prism.js (much more lightweight, 90kB vs 385kB bundle size for minimal test application)
|
||||
- Make markdown renderer class configurable and set it to `prose` by default (for Tailwind support)
|
||||
- Make markdown input usable without JS
|
||||
|
||||
## Features
|
||||
|
||||
- 🌈 Markdown syntax highlighting ([Shiki](https://shiki.style/));
|
||||
|
@ -108,7 +100,7 @@ npm i @cartamd/plugin-name
|
|||
|
||||
```svelte
|
||||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
// Component default theme
|
||||
import 'carta-md/default.css';
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { emoji } from '@cartamd/plugin-emoji';
|
||||
import { code } from '@cartamd/plugin-code';
|
||||
import PlusCircled from './assets/PlusIcon.svelte';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { attachment } from '@cartamd/plugin-attachment';
|
||||
import { emoji } from '@cartamd/plugin-emoji';
|
||||
import { slash } from '@cartamd/plugin-slash';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor, Markdown } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor, Markdown } from '@thetadev256/carta-md';
|
||||
import placeholder from './math-stack-exchange-placeholder.tex?raw';
|
||||
import { math } from '@cartamd/plugin-math';
|
||||
import { tikz } from '@cartamd/plugin-tikz';
|
||||
|
|
|
@ -37,7 +37,7 @@ Setup a basic editor:
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import 'carta-md/default.css'; /* Default theme */
|
||||
|
||||
const carta = new Carta({
|
||||
|
@ -68,7 +68,7 @@ Or, if you just want to render content:
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, Markdown } from '@thetadev/carta-md';
|
||||
import { Carta, Markdown } from '@thetadev256/carta-md';
|
||||
|
||||
const carta = new Carta({
|
||||
/* ... */
|
||||
|
|
|
@ -39,7 +39,7 @@ import '@cartamd/plugin-anchor/default.css';
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { anchor } from '@cartamd/plugin-anchor';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -35,7 +35,7 @@ import '@cartamd/plugin-attachment/default.css';
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { attachment } from '@cartamd/plugin-attachment';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -62,7 +62,7 @@ It is no longer possible to specify a custom highlighter in this plugin. However
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { code } from '@cartamd/plugin-code';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -39,7 +39,7 @@ import '@cartamd/plugin-emoji/default.css';
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { emoji } from '@cartamd/plugin-emoji';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -5,7 +5,7 @@ title: Math
|
|||
|
||||
<script>
|
||||
import Code from '$lib/components/code/Code.svelte';
|
||||
import { Markdown, Carta } from '@thetadev/carta-md';
|
||||
import { Markdown, Carta } from '@thetadev256/carta-md';
|
||||
import { math } from '@cartamd/plugin-math';
|
||||
import 'katex/dist/katex.css';
|
||||
|
||||
|
@ -78,7 +78,7 @@ or by using a content delivery network:
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { math } from '@cartamd/plugin-math';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -39,7 +39,7 @@ import '@cartamd/plugin-slash/default.css';
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { slash } from '@cartamd/plugin-slash';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -29,7 +29,7 @@ npm i @cartamd/plugin-tikz
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { tikz } from '@cartamd/plugin-tikz';
|
||||
import '@cartamd/plugin-tikz/fonts.css';
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@ Unified plugins need to be wrapped inside a `UnifiedTransformer` type, to be abl
|
|||
<Code>
|
||||
|
||||
```ts
|
||||
import type { UnifiedTransformer } from '@thetadev/carta-md';
|
||||
import type { UnifiedTransformer } from '@thetadev256/carta-md';
|
||||
|
||||
const hashtagTransformer: UnifiedTransformer<'sync'> = {
|
||||
execution: 'sync', // Sync, since the plugin is synchronous
|
||||
|
@ -158,7 +158,7 @@ To do that, we create a listener that:
|
|||
<Code>
|
||||
|
||||
```ts
|
||||
import type { Listener } from '@thetadev/carta-md';
|
||||
import type { Listener } from '@thetadev256/carta-md';
|
||||
import Hashtag from './Hashtag.svelte';
|
||||
|
||||
const convertHashtags: Listener<'carta-render'> = [
|
||||
|
@ -193,7 +193,7 @@ Let's now create a Plugin with the transformer and the listener:
|
|||
<Code>
|
||||
|
||||
```ts
|
||||
import type { Plugin } from '@thetadev/carta-md';
|
||||
import type { Plugin } from '@thetadev256/carta-md';
|
||||
|
||||
export const hashtag = (): Plugin => ({
|
||||
transformers: [hashtagTransformer],
|
||||
|
@ -206,7 +206,7 @@ export const hashtag = (): Plugin => ({
|
|||
We can now use the plugin with the following:
|
||||
|
||||
```ts
|
||||
import { Carta } from '@thetadev/carta-md';
|
||||
import { Carta } from '@thetadev256/carta-md';
|
||||
|
||||
const carta = new Carta({
|
||||
// ...
|
||||
|
|
|
@ -100,7 +100,7 @@ npm i @cartamd/plugin-name
|
|||
|
||||
```svelte
|
||||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
// Component default theme
|
||||
import 'carta-md/default.css';
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://code.thetadev.de/ThetaDev/carta.git"
|
||||
"url": "git+https://github.com/BearToCode/carta.git"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
|
@ -14,8 +14,7 @@
|
|||
"svelte": "./dist/index.js",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./default.css": "./dist/default.css",
|
||||
"./highlight.css": "./dist/highlight.css"
|
||||
"./default.css": "./dist/default.css"
|
||||
},
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
|
|
|
@ -20,7 +20,7 @@ import '@cartamd/plugin-anchor/default.css';
|
|||
|
||||
```svelte
|
||||
<script>
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { anchor } from '@cartamd/plugin-anchor';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
"rehype-slug": "^6.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@thetadev/carta-md": "^4.0.0",
|
||||
"@thetadev256/carta-md": "^4.0.0",
|
||||
"svelte": "^3.54.0 || ^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import rehypeSlug, { type Options as SlugOptions } from 'rehype-slug';
|
||||
import rehypeAutolinkHeadings, { type Options as AutolinkOptions } from 'rehype-autolink-headings';
|
||||
import type { Plugin } from '@thetadev/carta-md';
|
||||
import type { Plugin } from '@thetadev256/carta-md';
|
||||
export * from './default.css?inline';
|
||||
|
||||
export interface AnchorExtensionOptions {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { anchor } from '$lib';
|
||||
import 'carta-md/default.css';
|
||||
import '$lib/default.css';
|
||||
|
|
|
@ -20,7 +20,7 @@ import '@cartamd/plugin-attachment/default.css';
|
|||
|
||||
```svelte
|
||||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { attachment } from '@cartamd/plugin-attachment';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"!dist/**/*.spec.*"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"@thetadev/carta-md": "^4.0.0",
|
||||
"@thetadev256/carta-md": "^4.0.0",
|
||||
"marked": "^9.1.5",
|
||||
"svelte": "^3.54.0 || ^4.0.0"
|
||||
},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import type { Carta } from '@thetadev/carta-md';
|
||||
import type { Carta } from '@thetadev256/carta-md';
|
||||
import type { Writable } from 'svelte/store';
|
||||
import UploadIcon from './icons/UploadIcon.svelte';
|
||||
import type { SvelteComponent } from 'svelte';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import type { Carta } from '@thetadev/carta-md';
|
||||
import type { Carta } from '@thetadev256/carta-md';
|
||||
import SpinnerIcon from './icons/SpinnerIcon.svelte';
|
||||
import type { Writable } from 'svelte/store';
|
||||
import type { SvelteComponent } from 'svelte';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type { Carta, Plugin, Listener } from '@thetadev/carta-md';
|
||||
import type { Carta, Plugin, Listener } from '@thetadev256/carta-md';
|
||||
import { get, writable, type Writable } from 'svelte/store';
|
||||
import type { SvelteComponent } from 'svelte';
|
||||
import DropOverlay from './DropOverlay.svelte';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script lang="ts">
|
||||
import { attachment } from '$lib';
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
|
||||
import 'carta-md/default.css';
|
||||
import '$lib/default.css';
|
||||
|
|
|
@ -42,7 +42,7 @@ It is no longer possible to specify a custom highlighter in this plugin. However
|
|||
|
||||
```svelte
|
||||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { code } from '@cartamd/plugin-code';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
"typescript-cp": "^0.1.8"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@thetadev/carta-md": "^4.0.0"
|
||||
"@thetadev256/carta-md": "^4.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type { DualTheme, Theme, Plugin } from '@thetadev/carta-md';
|
||||
import type { DualTheme, Theme, Plugin } from '@thetadev256/carta-md';
|
||||
import type { RehypeShikiOptions } from '@shikijs/rehype';
|
||||
import rehypeShikiFromHighlighter from '@shikijs/rehype/core';
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ import '@cartamd/plugin-emoji/default.css';
|
|||
|
||||
```svelte
|
||||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { emoji } from '@cartamd/plugin-emoji';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"remark-gemoji": "^8.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@thetadev/carta-md": "^4.0.0",
|
||||
"@thetadev256/carta-md": "^4.0.0",
|
||||
"svelte": "^3.54.0 || ^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import type { Carta } from '@thetadev/carta-md';
|
||||
import type { Carta } from '@thetadev256/carta-md';
|
||||
import { onDestroy, onMount } from 'svelte';
|
||||
import nodeEmoji from 'node-emoji';
|
||||
import type { TransitionConfig } from 'svelte/transition';
|
||||
|
|
|
@ -3,7 +3,7 @@ import type {
|
|||
ExtensionComponent,
|
||||
GrammarRule,
|
||||
HighlightingRule
|
||||
} from '@thetadev/carta-md';
|
||||
} from '@thetadev256/carta-md';
|
||||
import remarkGemoji from 'remark-gemoji';
|
||||
import { fade, scale, type TransitionConfig } from 'svelte/transition';
|
||||
import Emoji from './Emoji.svelte';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { emoji } from '$lib';
|
||||
import 'carta-md/default.css';
|
||||
import '$lib/default.css';
|
||||
|
|
|
@ -38,7 +38,7 @@ or by using a content delivery network:
|
|||
|
||||
```svelte
|
||||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { math } from '@cartamd/plugin-math';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"typescript": "^5.0.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@thetadev/carta-md": "^4.0.0"
|
||||
"@thetadev256/carta-md": "^4.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type { Plugin } from '@thetadev/carta-md';
|
||||
import type { Plugin } from '@thetadev256/carta-md';
|
||||
import remarkMath, { type Options as RemarkMathOptions } from 'remark-math';
|
||||
import rehypeKatex, { type Options as RehypeKatexOptions } from 'rehype-katex';
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ import '@cartamd/plugin-slash/default.css';
|
|||
|
||||
```svelte
|
||||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { slash } from '@cartamd/plugin-slash';
|
||||
|
||||
const carta = new Carta({
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"bezier-easing": "^2.1.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@thetadev/carta-md": "^4.0.0",
|
||||
"@thetadev256/carta-md": "^4.0.0",
|
||||
"svelte": "^3.54.0 || ^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import type { Carta } from '@thetadev/carta-md';
|
||||
import type { Carta } from '@thetadev256/carta-md';
|
||||
import type { SlashSnippet } from './snippets';
|
||||
import type { TransitionConfig } from 'svelte/transition';
|
||||
import { onDestroy, onMount } from 'svelte';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { fade, scale, type TransitionConfig } from 'svelte/transition';
|
||||
import SlashComponent from './Slash.svelte';
|
||||
import type { Plugin, ExtensionComponent } from '@thetadev/carta-md';
|
||||
import type { Plugin, ExtensionComponent } from '@thetadev256/carta-md';
|
||||
import BezierEasing from 'bezier-easing';
|
||||
import { defaultSnippets, type DefaultSnippetId, type SlashSnippet } from './snippets';
|
||||
export * from './default.css?inline';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type { InputEnhancer } from '@thetadev/carta-md';
|
||||
import type { InputEnhancer } from '@thetadev256/carta-md';
|
||||
|
||||
export interface SlashSnippet {
|
||||
/**
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { slash } from '$lib';
|
||||
import 'carta-md/default.css';
|
||||
import '$lib/default.css';
|
||||
|
|
|
@ -16,7 +16,7 @@ npm i @cartamd/plugin-tikz
|
|||
|
||||
```svelte
|
||||
<script lang="ts">
|
||||
import { Carta, MarkdownEditor } from '@thetadev/carta-md';
|
||||
import { Carta, MarkdownEditor } from '@thetadev256/carta-md';
|
||||
import { tikz } from '@cartamd/plugin-tikz';
|
||||
|
||||
import '@cartamd/plugin-tikz/fonts.css';
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
"vite-raw-plugin": "^1.0.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@thetadev/carta-md": "^4.0.0"
|
||||
"@thetadev256/carta-md": "^4.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type { Carta, Event, Plugin } from '@thetadev/carta-md';
|
||||
import type { Carta, Event, Plugin } from '@thetadev256/carta-md';
|
||||
import type { Plugin as UnifiedPlugin } from 'unified';
|
||||
import { visit, SKIP } from 'unist-util-visit';
|
||||
import { fromDom } from 'hast-util-from-dom';
|
||||
|
|
|
@ -211,6 +211,9 @@ importers:
|
|||
|
||||
packages/plugin-anchor:
|
||||
dependencies:
|
||||
carta-md:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.2(svelte@4.2.2)
|
||||
rehype-autolink-headings:
|
||||
specifier: ^7.1.0
|
||||
version: 7.1.0
|
||||
|
@ -256,6 +259,10 @@ importers:
|
|||
version: 5.1.6(@types/node@18.16.3)(sass@1.69.5)
|
||||
|
||||
packages/plugin-attachment:
|
||||
dependencies:
|
||||
carta-md:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.2(svelte@4.2.12)
|
||||
devDependencies:
|
||||
'@sveltejs/adapter-auto':
|
||||
specifier: ^3.1.1
|
||||
|
@ -302,6 +309,9 @@ importers:
|
|||
'@shikijs/rehype':
|
||||
specifier: ^1.4.0
|
||||
version: 1.4.0
|
||||
carta-md:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.2(svelte@4.2.12)
|
||||
unified:
|
||||
specifier: ^11.0.4
|
||||
version: 11.0.4
|
||||
|
@ -324,6 +334,9 @@ importers:
|
|||
bezier-easing:
|
||||
specifier: ^2.1.0
|
||||
version: 2.1.0
|
||||
carta-md:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.2(svelte@4.2.12)
|
||||
node-emoji:
|
||||
specifier: ^1.11.0
|
||||
version: 1.11.0
|
||||
|
@ -373,6 +386,9 @@ importers:
|
|||
|
||||
packages/plugin-math:
|
||||
dependencies:
|
||||
carta-md:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.2(svelte@4.2.12)
|
||||
rehype-katex:
|
||||
specifier: ^7.0.0
|
||||
version: 7.0.0
|
||||
|
@ -392,6 +408,9 @@ importers:
|
|||
bezier-easing:
|
||||
specifier: ^2.1.0
|
||||
version: 2.1.0
|
||||
carta-md:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.2(svelte@4.2.12)
|
||||
devDependencies:
|
||||
'@sveltejs/adapter-auto':
|
||||
specifier: ^3.1.1
|
||||
|
@ -435,6 +454,9 @@ importers:
|
|||
|
||||
packages/plugin-tikz:
|
||||
dependencies:
|
||||
carta-md:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.2(svelte@4.2.12)
|
||||
hast-util-from-dom:
|
||||
specifier: ^5.0.0
|
||||
version: 5.0.0
|
||||
|
@ -2310,6 +2332,38 @@ packages:
|
|||
redeyed: 2.1.1
|
||||
dev: true
|
||||
|
||||
/carta-md@4.0.2(svelte@4.2.12):
|
||||
resolution: {integrity: sha512-wMlw0r5RZiVwvF3dyxE/vHj9pXlXbzpijJ3m/o9zqZe7Cf6D96AjyBHBpa0A0OPj/uEJVF3k0R6ctopBJCpCQg==}
|
||||
peerDependencies:
|
||||
svelte: ^3.54.0 || ^4.0.0
|
||||
dependencies:
|
||||
rehype-stringify: 10.0.0
|
||||
remark-gfm: 4.0.0
|
||||
remark-parse: 11.0.0
|
||||
remark-rehype: 11.1.0
|
||||
shiki: 1.4.0
|
||||
svelte: 4.2.12
|
||||
unified: 11.0.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/carta-md@4.0.2(svelte@4.2.2):
|
||||
resolution: {integrity: sha512-wMlw0r5RZiVwvF3dyxE/vHj9pXlXbzpijJ3m/o9zqZe7Cf6D96AjyBHBpa0A0OPj/uEJVF3k0R6ctopBJCpCQg==}
|
||||
peerDependencies:
|
||||
svelte: ^3.54.0 || ^4.0.0
|
||||
dependencies:
|
||||
rehype-stringify: 10.0.0
|
||||
remark-gfm: 4.0.0
|
||||
remark-parse: 11.0.0
|
||||
remark-rehype: 11.1.0
|
||||
shiki: 1.4.0
|
||||
svelte: 4.2.2
|
||||
unified: 11.0.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/ccount@2.0.1:
|
||||
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
|
||||
dev: false
|
||||
|
|
|
@ -34,7 +34,7 @@ export const execAsync = (command, cwd = undefined, options = { showLog: false }
|
|||
* List of all the packages.
|
||||
*/
|
||||
export const packages = [
|
||||
'@thetadev/carta-md',
|
||||
'@thetadev256/carta-md',
|
||||
'plugin-math',
|
||||
'plugin-slash',
|
||||
'plugin-emoji',
|
||||
|
|
Loading…
Reference in a new issue