688 B
688 B
Carta Attachment Plugin
This plugin adds support for attachments. Install it using:
npm i @cartamd/plugin-attachment
Setup
Styles
Import the default theme, or create you own:
import '@cartamd/plugin-attachment/default.css';
Extension
<script lang="ts">
import { Carta, CartaEditor } from 'carta-md';
import { attachment } from '@cartamd/plugin-attachment';
const carta = new Carta({
extensions: [
attachment({
upload(file) {
/* ... */
}
})
]
});
</script>
<CartaEditor {carta} />
Documentation
Checkout the docs for examples, options and more.