Write and preview Markdown at the same time.
Ixora is a CodeMirror 6 extension pack that enhances your Markdown writing experience.
<p align="center">
<img
height="150px"
src="https://codeberg.org/retronav/ixora/raw/branch/main/assets/logo.svg"
alt="Ixora logo" />
</p>
Ixora
WARNING: Ixora is under heavy development, but is quite usable.
Ixora is a CodeMirror 6 extension pack to make writing
Markdown fun and beautiful.
This library includes:
- Proper heading font sizes
- Hidden decoration marks (*italic* -> italic but style is preserved)
- Auto link detection
- Support for ID links (eg. [Foo bar](#foo-bar) )
- YAML frontmatter support
- Styling for lots of Markdown elements
Installation
1. Install the @retronav/ixora package using the package manager
of your choice.
2. Import the extensions you need
import { headings, codeblock, list } from '@retronav/ixora';
Or import all of them at once
import ixora from '@retronav/ixora';
3. Add them in the extensions parameter of your CodeMirror editor creation
function.
const editor = new EditorView({
state: EditorState.create({
extensions: [
↑ This is Ixora in action, editing the project README