Multi-Column Markdown

by Cameron Robinson
5
4
3
2
1
Score: 63/100

Description

Category: Note Enhancements

The Multi-Column Markdown plugin brings a fresh way to arrange content side-by-side inside your notes. Instead of a traditional single-column format, you can place elements in multiple columns, providing a richer viewing experience. You control the number of columns, their widths, and how text aligns within them. It can even adapt an entire file into multi-column format when switched to reading mode. This flexibility allows you to present notes more dynamically, making it easier to handle larger amounts of information in a visually appealing way. Whether comparing content or organizing data in parallel, the result feels more polished and accessible.

Reviews

No reviews yet.

Stats

418
stars
200,380
downloads
19
forks
1,555
days
720
days
846
days
2
total PRs
1
open PRs
0
closed PRs
1
merged PRs
131
total issues
43
open issues
88
closed issues
20
commits

Latest Version

2 years ago

Changelog

0.9.1

Bug Fixes
  • Fixed false positive warning on column break syntax.

README file from

Github

Multi-Column Markdown

Take your boring markdown document and add some columns to it! With Multi Column Markdown rather than limiting your document layout to a single linear file you can now define blocks of data to be laid out horizontally next to each other. This additional functionality gives you the freedom to structure your notes in more creative ways.

Preview_1


Core Features


  • Define customizable column layouts within your Obsidian documents.
  • Setup your columns to look how you want, being able to define number of columns, widths, spacing, text alignment and more.
  • Muliple syntax options including Pandoc compatible fenced divs.
  • Setup entire documents to automatically reflow into multiple columns when viewed in Obsidian's reading mode.

Table of Contents




A Word On Live Preview


Live preivew has been supported in Multi-Column Markdown, however cross compatibilty with other plugins, anything that requires interaction (IE: button clicks), and more advanced, non-naitive markdown, Obsidian features may or may not be supported in this mode.

Due to how custom live preview plugins are implemented within CodeMirror6 and hook into Obsidian, I can not guarentee all plugins will render properly within live preview at this point. Plugins that do not render their content immediatly, such as needing to wait for a dataview query, do not render properly.

This plugin was originally intended for use only in Reading mode where plugins have more control over how content is rendered. Most plugins, interactive elements, advanced markdown, and visual stylings will render better and have more cross compatibility in Reading mode.

Usage:

You create a multi-column region by defining the start, settings, column-end, and end tags. EG:

Text displayed above.

--- start-multi-column: ExampleRegion1
```column-settings
number of columns: 2
largest column: left
```

Text displayed in column 1.

--- end-column ---

Text displayed in column 2.

--- end-multi-column

Text displayed below.

Rendered as: Example_1


Syntax Reference

Start a Multi-Column Region:

Each multi-column region must start with either:

--- start-multi-column: A_unique_region_ID\

or

--- multi-column-start: A_unique_region_ID_1\

or

::::: {.columns id=A_unique_region_ID_2}
(See more about Pandoc's fenced divs syntax below.)

After defining the start tag you must declare an ID for the region. The ID is used to differentiate between different regions if there are multiple in the same document.

Each ID must be unique within the same document or unexpected render issues may occur. An ID may be used across multiple documents so that, for example, you can use the ID "dailynote" in the template used for your Periodic Notes.

By using the "Insert Multi-Column Region" command (more below) the start ID will be pre-set as a randomly generated 4 character string.

You can also use the "Fix Missing IDs" command which will search the currently open document and append random IDs to all regions that are missing one.

Region Settings:

```column-settings
Any Setting flags (see below)
```

```column-settings
Any Setting flags (see below)
```

::::: {.columns id=A_unique_region_ID_2 Any Additional Setting flags (see below)}

End a Column:

--- column-end ---
--- end-column ---
--- column-break ---
--- break-column ---\

::: columnbreak
:::
(New line after columnbreak required.)

End Multi-Column Region:

--- end-multi-column
--- multi-column-end\

:::
(This end region syntax is only valid when using the Pandoc fenced divs syntax to start a region.)

Pandoc Fenced Divs Support

You can also use Pandoc's fenced divs syntax to define column regions. (For more detail on this syntax see here and here.)

To create a multicolumn region use:

::: columns

<Column Content>

:::

To define multiple Pandoc regions on the same document, and to define region settings you must use the attributes syntax:

::::: {.columns property=value id=ID_ExampleID}

<Column Content>

:::::

Not providing an ID will cause regions to not render.

All other settings can be defined within the attributes using the same setting flag names defined below.

What is supported with this syntax:
  • Basic fenced divs column definition: '::: columns' or '::: {.columns}'
  • Specifying the number of columns with english words up to ten: '::: twocolumns', '::: {.three-columns}', etc.
  • Specifying the number of columns through attributes: '::: {.columns col-count=3}'
  • Specifying column gap through attributes: '::: {.columns columngap=3em}'
  • Specifying column breaks through column break div: :::: columnbreak\n::::
What is not supported:
  • Recusive Column Regions. Recusive regions are not supported in Core MCM so will not render the same as an exported Pandoc PDF.
  • Spanning element. Elements that break up a column region to span across the view are not supported. You must manually end the region and start a new one.
  • Specifying 'column rule', as there is currently no way to define this with other syntax.
  • Justified or ragged column mode.
  • "Fluid Columns" by default. The fluid columns default of Pandoc's syntax is equivalent to MCM's Auto Layout. However auto layout has significant perforamce overhead in Live preview and due to this Pandoc syntax will not automatically flag regions to auto layout. You can however manually flag them by adding the setting to the attributes: ::: {.three-columns fluid-columns=true} or ::: {.three-columns auto-layout=true}
Number of Columns:
  • Setting Flags:
    • Number of Columns:
    • Num of Cols:
    • Col Count:
  • Valid Selections:
    • Any digit.

Example:

```column-settings
Number of Columns: 2
```

Column Size:

By default all of the columns will be set to equal size if this option is omitted. Can define on a per column basis with array syntax: EG: [25%, 75%]

  • Setting Flags:
    • Column Size:
    • Col Size:
    • Column Width:
    • Col Width:
    • Largest Column:
  • Valid Selections:
    • Single Column layout:
      • Small
      • Medium
      • Large
      • Full
    • For either 2 or 3 column layouts
      • Standard
      • Left
      • First
      • Right
      • Second
    • Only for 3 column layouts
      • Center
      • Third
      • Middle
    • Allows most CSS unit lengths (px, pt, %, etc).

Example:

```column-settings
Column Size: standard
( OR )
Column Size: [25%, 75%]
```

Border:

By default the border is enabled but can be removed with: Can define on a per column basis with array syntax: EG: [off, on, off]

  • Setting Flags:
    • Border:
  • Valid Selections:
    • disabled
    • off
    • false

Example:

```column-settings
Border: disabled
( OR )
Border: [off, on]
```

Shadow:

On by default, can be removed with:

  • Setting Flags:
    • Shadow:
  • Valid Selections:
    • disabled
    • off
    • false

Example:

```column-settings
Shadow: off
```

Column Position or Column Location:

Only used with the single column option.

  • Setting Flags:
    • Column Position:
    • Col Position:
    • Column Location:
    • Col Location:
  • Valid Selections:
    • Left
    • Right
    • Center
    • Middle

Example:

```column-settings
Number of Columns: 1
Column Position: Left
```

Column Spacing:

Used to set the distance between all of the columns. Can define on a per column basis with array syntax: EG: [5px, 10px]

  • Setting Flags:
    • Column Spacing:
  • Valid Selections:
    • Allows most CSS unit lengths (px, pt, %, etc).
    • A number alone without a defined unit type defaults to pt unit.

Example:

```column-settings
Column Spacing: 5px
( OR )
Column Spacing: [5px, 10px]
```

Content Overflow:

Should the columns cut off anything that goes outside the column bounds or should it be scrollable. Can define on a per column basis with array syntax: EG: [Scroll, Hidden]

  • Setting Flags:
    • Overflow:
    • Content Overflow:
  • Valid Selections:
    • Scroll (Default)
    • Hidden

Example:

```column-settings
Overflow: Hidden
( OR )
Overflow: [Scroll, Hidden]
```

Alignment:

Choose the alignment of the content in the columns. Can define on a per column basis with array syntax: EG: [Left, Center]

  • Setting Flags:
    • Alignment:
    • Content Alignment:
    • Content align:
    • Text Align:
  • Valid Selections:
    • Left (Default)
    • Center
    • Right

Example:

```column-settings
Alignment: Center
( OR )
Alignment: [Left, Center]
```

Align Tables to Text Alignment:

Define whether to align tables to the alignment of the text content, see above. This setting overrides the plugin level alignment definition.

  • Setting Flags:
    • Align Tables to Text Alignment:
  • Valid Selections:
    • true
    • on
    • enabled
    • disabled
    • off
    • false

Example:

```column-settings
Align Tables to Text Alignment: true
( OR )
Align Tables to Text Alignment: off
```

Auto Layout
  • Setting Flags:
    • Auto Layout:
    • Fluid Columns:
    • Fluid Cols:
  • Valid Selections:
    • true
    • on

Example:

```column-settings
Auto Layout: on
```

Auto layout regions do not use defined column breaks. Instead these type of multi-column regions will attempt to balance all content equally between the columns. Headings are also attempted to be preserved so that a heading block will not end a column but will instead be moved to the top of the next column with it's corresponding content.

To use this feature set "Auto Layout: true" within the region settings.


Full Document Multi-Column Reflow


Documents can be set to fully reflow into multiple columns while in Reading mode.

Syntax

To enable document reflow use Obsdian's frontmatter to provide the metadata for the file with the following syntax:

EG:

---
Multi-Column Markdown:
  - Number of columns: 3
  - Alignment: [Left, Center, Left]
  - Border: off
---

First line of document.

All settings must be a list underneath the Multi-Column Markdown tag. If obsidian does not parse a valid syntax it will not render. You can use the "Setup Multi-Column Reflow" command to ensure proper syntax.

Features:

  • Reflow automatically detects your document view size and sets the column heights to match, reducing the number of times you need to scroll through the document.
    • Auto column height is overridable by defining the col-height in frontmatter settings using standard MCM syntax.
    • Changes to the view size currently require a document reload to update layout.
  • User definable column breaks using default Multi-Column Markdown column break syntax.

Additional Notes:

  • Just as with core MCM, the default Obsidian theme, all basic markdown syntax and rendered elements should be fully supported. However cross compatibility with other plugins, embeds, and themes are not guarenteed.
  • All manually set multi-column regions are overridden by the document reflow.

Known Issues:

  • Changes to the document may require a file reload to properly update.
  • Export to PDF is currently not supported.
  • Long paragraphs of text will not be split across columns, as they are rendered as a single chunks of content by Obsidian.

Plugin Cross Compatibility.


Not all plugins will be cross compatable within a multi-column region. Depending on the implementation or use case, some plugins will either entierly not render, render incorrectly, or render but be uninteractable. For the most part, due to how Obsidian plugins work, there is little that can be done at this stage to guarentee cross compatibility. And this is even more the case when using Live Preview. You can check the Cross Compatibility sheet for plugins known to work within columns. Anything not on that list has not been tested.


Obsidian Theming


Just as with cross compatibilty above, multi-column regions may be effected by the Obsidian Theme you are running. There is very little non-layout dependent CSS within MCM but some themes may add or remove elements neccessary to properly render the columns. If regions do not render properly in a specific theme, feel free to open an issue and make sure to include what Obsidian theme you are running when describing the problem.

Full Mutli-Column Examples:

Here

Plugin Commands:

You can access the command pallet with ctrl/command - P.

Insert Multi-Column Region

Will create a two column region where the cursor is located with a randomly generated ID and a default settings block created. Anything currently selected will be moved outside the end of the inserted region as to not overwrite any data.

Fix Missing IDs For Multi-Column Regions

Will search the current document for any region start tags that are missing IDs and randomly generate new IDs for each region.

Toggle Mobile Rendering - Multi-Column Markdown

Enables or disables column rendering on mobile devices only.

Setup Multi-Column Reflow

Adds the default multi-column reflow tags and settings to the document frontmatter. Will not overwrite if already defined.

Installation

From Obsidian Community Plugins

You can install this plugin from the Obsidian Community Plugins menu by following these steps:

  • Open Settings within Obsidian
  • Click Community plugins and ensure Safe mode is disabled
  • Browse community plugins and find "Multi-Column Markdown"
  • Click Install
  • After installation is finished, click Enable

From GitHub Repository

Download main.js, manifest.json, styles.css from the latest release and add a new directory: [Obsidian-vault]/.obsidian/plugins/multi-column-markdown and add the files to that directory.

If this is your first Obsidian plugin close and reopen Obsidian and then open the settings menu, click the Community plugins tab to the left, ensure Safe mode is disabled, and then enable "Multi-Column Markdown" in the installed plugins list.

Known Issues

Live Preview
  • Any file interaction causes embeds to reload.

    • All issues of this kind are due to Obsidian redrawing the entire editor on every file interaction (click, keystroke, etc). The redraw causes all embeds to be re-loaded which makes them appear to flash on screen. There is currently no solution to this problem.
    • An attempt to aliviate this has been added in 0.9.0 using the LivePreview Render Cache, however the feature is still experimental and you must enable it within the settings window.
  • Some cross compatibility with other plugins is not supported and will not render.

    • Most plugins that do not render are more advanced plugins that load their content over time rather than immediatly at render time.
Minor Render Issues
  • Any general render issues within columns:
    • If columns render their content in an unexpected way try swapping to a new file and back, this will usually fix the issue.
  • When entering data into a multi-column region the data can sometimes be rendered a line above or below the intended location in the preview window. When the line is near the start or end of a column or region it may be rendered in the wrong column or outside of the region entirely.
  • Copy and pasting text into a new location within a region may not update in preview view properly.
  • When swapping between auto layout or single column, regions may sometimes become stuck rendering an old layout.
  • Auto layout regions sometimes get stuck in a non-equal state.
    • Workaround:
      • Swapping to a different file and back, or closing and reopeing the file will force a reload of the data and fix the render issue.

Other

  • Exporting a document with pandoc columns that contains other embedded fenced divs will not export properly.
  • Changes to a document may require a file reload to properly update Multi-Column Reflow.
  • Long paragraphs of text will not be split across columns in Multi-Column Reflow, as they are rendered as a single chunks of content by Obsidian.
  • The Obsidian API and this plugin are both still works in progress and both are subject to change.

Depricated

These syntax options are currently still supported but are being depricated for the newer syntax above.

Code-Block Start Tags

```start-multi-column
```

and

```multi-column-start
```

This syntax has been entierly depricated due to many compounding issues caused by MCM conflicting with Obsidian syntax. Notes will display an error on each column region until the syntax is updated. You can use the global syntax update featuer within the settings window, or the note specific command "Fix Multi-Column Syntax in File" within the Command Pallete

Start Multi-Column Region:
  • === start-multi-column: A_unique_region_ID_2
  • === multi-column-start: A_unique_region_ID_3
Settings Regions:

```settings```
```column-settings```
```multi-column-settings```

End a Column:
  • === column-end ===
  • === end-column ===
  • === column-break ===
  • === break-column ===
End Multi-Column Region:
  • === end-multi-column
  • === multi-column-end

Change Log

0.9.1

Bug Fixes
  • Fixed false positive warning on column break syntax.

0.9.0

Major Changes

Code-Block start regions have been deprecated Due to a combination of issues, this syntax form has had to be entirely deprecated. To make the transition away from that syntax as smooth as possible a command has been added to the Command Pallete "Fix Multi-Column Syntax in Current File" which will update the opened file to the current syntax. A global syntax update command has also been added to the settings panel. Please make sure to create backups of your vault before using the global updater.

Additions
  • Added settings page.
    • Add checkbox setting for enable/disabling mobile rendering (only visible when on the mobile application).
    • Setting how many auto layout iterations to perform per render loop.
  • Added action to settings page that modifies all relevant notes to update deprecated syntax to the currently supported syntax.
  • Added command to Command Pallete to modify the current note and update deprecated syntax to the currently supported syntax. Use "Fix Multi-Column Syntax in Current File"
  • Added action to settings page that modifies all relevant notes to fix missing column IDs by appending a randomized ID.
  • Added error system to inform user of issues in their column regions.
  • Added option to align tables to column text alignment.
    • Can set default alignment behavior in the settings pane.
    • Columns will override plugin setting by defining: "Align Tables to Text Alignment: true/false"
Improvements
  • Updated Live Preview rendering to be more cross compatible with other plugins.
  • Added rendering cache to live preview regions to improve performance when editing documents.
    • This feature is currently experimental only.
    • This feature intermittently caused notes to erase column content during development. A fix has been implemented but due to the potential data loss you must opt-in to using this feature within the plugin settings.
    • If column content is erased you can use undo to restore the file data until the file is closed.
    • Please make backups of your vault and disable this feature if you experience any data loss, I can not be held responsible for any data loss.
Bug Fixes
  • Fixed issue with document viewport jumping around when moving cursor, this requires a syntax update to all affected files.
  • Fixed cross compatibility of clicking check boxes when using the Dataview and Tasks plugins in reading mode.
  • Updated list CSS to better match reading mode.
Known Issues
  • PDF Embeds are currently unsupported due to the update to Obsidian's PDF renderer.

0.8.3

Bug Fixes
  • Fixed issue when button plugin directly embeded into column region, causing button to not render.

0.8.2

Bug Fixes
  • Fixed issue with button plugin cross compatibility, causing buttons to sometimes not render and be uninteractable.

0.8.1

Minor Changes
  • Updated viewport re-focusing to fix scrolling to end of document when selecting text.
  • Updated viewport re-focus to reduce unnecessary updates.
  • Updated image rendering to hopefully solve images not rendering in Reading Mode.
  • Updated to include webp images in live preview rendering.
  • Overhauled portion of element rendering in preparation for larger rework.

0.8.0

  • Unlimited Columns
    • You can now define an unlimited number of columns within your settings blocks. All columns that extend beyond the viewport will be visible when scrolling the column region.
    • Use the column size settings flag and the new settings array syntax to define custom column widths.(EG: "Column size: [20%, 30%, 50%, 100%]")
    • Implemented for FR #45, #46, #47
  • Multiple setting values per column
    • You can now define certain settings to be different for each column.
    • Use the syntax: "Alignment: [Left, Center, Right]"
    • The following settings can be defined in this way:
      • Column Size
      • Column Border
      • Column Spacing
      • Column Overflow
      • Text Alignment
  • Live preview scroll "fix"
    • Added new CM6 module that attempts to alleviate the viewport scroll issue in live preview.
    • The module attempts to keep the viewport centered on the cursor by moving the view after Obsidian re-renders the document.
    • Known issues:
      • The viewport will appear to flash as it jumps to the new cursor location. This appears to be more or less noticable depending on the machine.
      • Swapping out and back into Obsidian causes the document to jump to the bottom of the document.
      • Clicking back into an editor view without moving the cursor can cause the viewport to jump to the bottom of the document.
  • Pandoc Multi-Column Syntax
    • Added support for the fenced dives syntax used with Pandoc per FR #71.
    • Not all of the fenced divs syntax is currently supported.
    • If you use multiple regions on the same document you must also include an ID within the attributes: ::: {columns id=A_unique_region_ID_4}
    • What is supported:
      • Basic fenced divs column definition: ::: columns or ::: {.columns}
      • Specifying the number of columns through english up to ten: ::: twocolumns, ::: {.three-columns}, etc.
      • Specifying the number of columns through attributes: ::: {.columns col-count=3}
      • Specifying column gap through attributes: ::: {.columns columngap=3em}
      • Specifying column breaks through column break div: :::: columnbreak\n::::
    • What is not supported:
      • Recusive Column Regions. Recusive regions are currently not supported in Core MCM so will not render the same as an exported Pandoc PDF.
      • Spanning element. Elements that break up a column region to span across the view are not supported. You must manually end the region and start a new one.
      • Specifying column rule, as there is currently no way to define this with other syntax. Will hopefully be added in the future.
      • Justified or ragged column mode.
      • "Fluid Columns" by default. The fluid columns default of Pandoc's syntax is equivalent to MCM's Auto Layout. However auto layout has significant perforamce overhead in Live preview and due to this Pandoc syntax will not automatically flag regions to auto layout. You can however manually flag them by adding the setting to the attributes: ::: {.three-columns fluid-columns=true} or ::: {.three-columns auto-layout=true}
    • Known Issues:
      • Exporting a document with pandoc columns that contains other embedded fenced divs will not export properly.
  • Full Document Multi-Column Reflow
    • Documents can now be set to fully reflow into multiple columns. Per FR #70
    • The multi-column reflow is only visible while in Reading mode.
    • Features:
      • Use core Obsidian yaml frontmatter to define what documents should reflow.
      • Reflow automatically detects your document view size and sets the column heights to match, reducing the number of times you need to scroll through the document.
        • Auto column height is overridable by defining the col-height in frontmatter settings using standard MCM syntax.
        • Changes to the view size currently require a document reload to update layout.
      • User definable render settings from within the frontmatter. (See example below.)
        • You must use valid Obsidian frontmatter syntax to define the settings or they will not be applied.
      • User definable column breaks using default Multi-Column Markdown column break syntax.
      • 'Setup Multi-Column Reflow' command will assist in setting proper yaml syntax to Obsidian frontmatter.
    • Additional Notes:
      • Just as with core MCM, the default Obsidian theme, all basic markdown syntax and rendered elements should be fully supported. However cross compatibility with other plugins, embeds, and themes are not guarenteed.
      • All manually set multi-column regions are overridden by the full document reflow.
    • Known Issues:
      • Changes to the document may require a file reload to properly update.
      • Export to PDF is currently not supported.
      • Long paragraphs of text will not be split across columns, as they are rendered as a single chunks of content by Obsidian.

Syntax Example:

---
Multi-Column Markdown:
  - Number of columns: 3
  - Alignment: [Left, Center, Left]
  - Border: off
---

Full Example Here

  • Minor Changes
    • Updated column break flag to trigger properly when attached to the end of lists.
    • Added new check for custom frame plugins that fixes rendering in view mode.
    • Fixed a bug that caused theme CSS to not apply to tables when rendered in live preview.
    • Updated live preview to properly render PDFs.
    • Attempted to fix cross compatibilty with "Buttons" plugin in Reading mode. #72
    • Added error message when user embeds a file within a live preview region.

Older Changes:

Change log

Support Me:

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Advanced Copy
2 years ago by leschuster
An Obsidian plugin to copy Markdown and transform it into HTML, Anki, or any custom format. Create custom profiles with versatile templates tailored to your workflow.
Advanced Progress Bars
a year ago by cactuzhead
Obsidian plugin to create custom progress bars
Advanced Slides
3 years ago by MSzturc
Create markdown-based reveal.js presentations in Obsidian
AI Chat as Markdown
2 years ago by Charl P. Botha
Archivist Importer
2 months ago by Archivist AI
Import selected vault files into Archivist campaigns.
Arweave Uploader
2 years ago by makesimple
Asciidoc Reader
2 years ago by voidgrown
Obsidian plugin for reading AsciiDoc files
Attachments MD Indexer
a year ago by Ian Inkov
Converts Obsidian canvas files to markdown index files, making canvas content searchable and graph-viewable within Obsidian.
Auto Front Matter
3 years ago by conorzhong
Autocorrect Formatter
2 years ago by b-yp
A plugin running on Obsidian that utilizes autocorrect to format Markdown content.
Automatic Linker
a year ago by Kodai Nakamura
Avatar
3 years ago by froehlichA
An obsidian plugin for displaying an avatar image in front of your notes.
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
Better Markdown Links
2 years ago by mnaoumov
Obsidian plugin that adds support for angle bracket links and manages relative links properly
Blockquote Levels
4 years ago by Carlo Zottmann
A plugin for Obsidian (https://obsidian.md) that adds commands for increasing/decreasing the blockquote level of the current line or selection(s).
Callout Copy Buttons
a year ago by Aly Thobani
An Obsidian plugin that adds copy buttons to callout blocks in your notes.
CardBoard
4 years ago by roovo
An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
Chat clips
a year ago by sleepingraven
Record chat in ordinary markdown list.
ChatGPT MD
3 years ago by Bram Adams
A (nearly) seamless integration of ChatGPT into Obsidian.
Chronos Timeline
a year ago by Claire Froelich
Render interactive timelines in your Obsidian notes from simple Markdown.
Confluence to Obsidian
3 years ago by K
import confluence space into obsidian
Console Markdown Plugin
3 years ago by Daniel Ellermann
An Obsidian plugin which renders console commands and their output.
Cooklang
2 years ago by Roger Veciana i Rovira
CookLang Editor
4 years ago by death_au/cooklang
Edit and display Cooklang recipes in Obsidian
Cooksync
a year ago by Cooksync
This is the official Obsidian plugin for Cooksync, maintained by the Cooksync team. It enables automatic import of recipe data from your Cooksync account. Note that this plugin requires a Cooksync account - a paid service that makes it easy to collect recipes from almost any recipe website.
Copy as HTML
4 years ago by Bailey Jennings
A simple plugin that copies the selected text to your clipboard as HTML
Copy as LaTeX
4 years ago by mo-seph
Quick plugin to be able to copy/paste from Obsidian/Markdown into a Latex document
Copy Section
2 years ago by skztr
Obsidian.md plugin adding a Copy button to the top of Headed sections
Creases
4 years ago by Liam Cain
👕 Tools for effectively folding markdown sections in Obsidian
Dataview Publisher
2 years ago by UD
Output markdown from your Dataview queries and keep them up to date. You can also be able to publish them.
Dataview Serializer
2 years ago by Sébastien Dubois
Obsidian plugin that gives you the power of Dataview, but generates Markdown, making it compatible with Obsidian Publish, and making the links appear on the Graph.
Dirtreeist
3 years ago by kasahala
Render a directory Structure Diagram from a markdown lists in codeblock.
Discord Message Formatter
3 years ago by Emile Durkheim
Obsidian.md plugin that lets you copy Discord conversations and perfectly formats them to Obsidian Markdown!
Docxer
2 years ago by Developer-Mike
🚀 Boost your productivity by previewing and converting Word files easily to markdown.
Embed 3D
a year ago by Jesse Strijker
An Obsidian Plugin for embedding 3D models in your notes. And manipulating the scenes to look the best you want
Emoji Shortcodes
5 years ago by phibr0
Emoji Shortcodes - Obsidian Plugin | Adds Support for Emoji Shortcodes to Obsidian
Enhanced Copy
2 years ago by Mara-Li
A obsidian plugin that allows to copy in markdown in reading view or canvas read-only view, creating profile and transform the text during copy.
Enhancing Mindmap
5 years ago by Mark
obsidian plugin editable mindmap,you can edit mindmap on markdown file
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
ExcaliBrain
4 years ago by Zsolt Viczian
A graph view to navigate your Obsidian vault
Excel to Markdown Table
4 years ago by Ganessh Kumar R P
An Obsidian plugin to paste data from Microsoft Excel, Google Sheets, Apple Numbers and LibreOffice Calc as Markdown tables in Obsidian editor.
Extended Markdown Syntax
a year ago by Kotaindah55
Extend your Markdown syntax using delimiters instead of HTML tags, such as underlining, superscript, subscript, highlighting, and spoiler.
Extract url content
5 years ago by Stephen Solka
Plugin to extract markdown out of urls
File Cleaner Redux
2 years ago by husjon
A plugin for Obsidian to help clean up files in your vault
File Include
3 years ago by Till Hoffmann
Filename Emoji Remover
4 years ago by Yüksel Tolun
A simple plugin for the note taking app Obsidian that will rename your files to remove emojis in their names.
Floccus Bookmarks to Markdown
3 years ago by mddevils
Foodiary
2 years ago by vkostyanetsky
Food tracker plugin for Obsidian
Formatto
2 years ago by Deca
Simple, fast, and easy-to-use Obsidian Markdown formatter.
Friday
a year ago by sunwei
Write anywhere. Publish everywhere. Sync your notes, publish instantly, turn Markdown into websites.
GH Links Shortener
6 months ago by David Barnett
Obsidian plugin to set shortened link text for pasted GitHub URLs
GitHub Sync
2 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
Global Markdown Encryption
3 years ago by shlemiel
a plugin for encrypting obsidian markdowns in-memory, single password based.
Hard Breaks
4 years ago by Börge Kiss
↩ A plugin for Obsidian that adds functionality to force hard line breaks
Heading Shifter
4 years ago by kasahala
Easily Shift and Change markdown headings.
Hexo Toolkit
a year ago by Xiangru
An Obsidian plugin for maintaining Hexo posts.
Highlight Helper
2 years ago by Chongmyung Park
Helper to collect highlight in Obsidian
Horizontal Blocks
7 months ago by iCodeAlchemy
Bring Notion-style layouts to Obsidian — with side-by-side, resizable markdown blocks that support full Obsidian syntax including images, embeds, and internal links.
ii
2 years ago by Wilson
The main feature of this plugin is to quickly insert common Markdown code and HTML code, including Sup, Sub, Audio, Video, Iframe, Left-Center-Right Alignment, Variables, Footnotes, Callout, Anchor Points, HTML Comments and so on.
Image Caption
5 years ago by bicarlsen
Add captions to images in Obsidian.
Image Captions
3 years ago by Alan Grainger
Add captions to images with inline Markdown and link support. The caption format is compatible with the CommonMark spec and other Markdown applications.
Image Upload Toolkit
3 years ago by Addo Zhang
An obsidian plugin for uploading local images embedded in markdown to remote store and export markdown for publishing to static site.
Immersive Translate
2 years ago by imfenghuang
Immersive Translate For Obsidian
Import GitHub Readme
2 years ago by Chasebank87
Insta TOC
a year ago by Nick C.
Generate, update, and maintain a table of contents for your notes while typing in real time.
Interactive Code Blocks
2 years ago by Student Assistenten Team Deeltaken
Kanban
5 years ago by mgmeyers
Create markdown-backed Kanban boards in Obsidian.
Keyboard Formatter
8 months ago by Lauloque
Formats keyboard text (kbd) in your Obsidian notes quickly and consistently.
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Links
3 years ago by MiiKey
manipulate & manage obisidian links
Linter
5 years ago by Victor Tao
An Obsidian plugin that formats and styles your notes with a focus on configurability and extensibility.
MagicCalendar
3 years ago by Vaccarini Lorenzo
An obsidian plugin that exploit a natural language processing engine to find potential events and sync them with iCalendar
Marjdown shortcuts
4 years ago by Jules Guesnon
🪨 Obsidian plugin that allows to write markdown from commands
Markdown Attributes
5 years ago by Jeremy Valentine
Add attributes to elements in Obsidian
Markdown Blogger
3 years ago by Alexa Fazio
Allows developers to push markdown notes to their local blog, portfolio, or static site. Works with Astro.js, Next.js, and any other framework configured to render markdown pages.
Markdown Calendar Generator
10 months ago by Zach Russell
An intentionally simple obsidian markdown table calendar generator
Markdown Formatting Assistant
5 years ago by Reocin
This Plugin provides a simple WYSIWYG Editor for Markdown and in addition a command line interface. The command line interface facilitate a faster workflow.
Markdown Furigana
5 years ago by Steven Kraft
Simple Markdown to Furigana Rendering Plugin for Obsidian
Markdown Image Caption
3 years ago by Hananoshika Yomaru
Generate image caption easily. Completely markdown-based.
Markdown Link Space Encoder
3 years ago by Ron Kosova
Obsidian plugin to automatically encode spaces to %20 in Markdown-style links
Markdown prettifier
5 years ago by pelao
A markdown prettifier for obsidian
Markdown Sync Scroll
3 years ago by ProjectXero
Synchronize scroll in linked Markdown views.
Markdown table checkboxes
3 years ago by DylanGiesberts
Obsidian plugin. Allows for the usage of checkboxes inside markdown tables.
Markdown Tags
a year ago by John Smith III
Enhance your Markdown documents with custom tags. Use predefined or custom labels, customizable colors, and arrow indicators to visually track tasks and statuses.
Markdown Timeline
a year ago by Jiaheng Zhang
An Obsidian plugin to record the events in a Flashback timeline
Markdown to Jira Converter
3 years ago by muckmuck
An obsidian.md plugin, which provides a markdown to jira markup converter
Markdown to Slack Message
3 years ago by Woongshik Choi
Markdown Tree
3 years ago by carvah
Introducing a powerful plugin that revolutionizes directory tree creation. With its intuitive Markdown-inspired coding style, this plugin empowers users to effortlessly and swiftly construct intricate directory trees.
Marker PDF to MD
2 years ago by L3N0X
Make use of different AI models to convert your pdfs into markdown with perfect ocr, latex formulas, tables, images and more! Supports Mistral AI OCR (free) and self hosted variants!
Markitdown File Converter
a year ago by Ethan Troy
Integrate Microsoft's Markitdown tool to convert various file formats to Markdown for your vault.
Marp
3 years ago by JichouP
Plugin to use Marp with Obsidian
mdx as md
5 years ago by Nikolay Kozhukharenko
Edit mdx files in Obsidian.md as if they were markdown
Meal Plan
2 years ago by Tyler Mayoff
A meal plan & recipe manager plugin for Obsidian
Mehrmaid
2 years ago by huterguier
Rendering Obsidian Markdown inside Mermaid diagrams.
Mind Map
5 years ago by James Lynch
An Obsidian plugin for displaying markdown notes as mind maps using Markmap.
Mochi Cards Exporter
5 years ago by kalbetre
Mochi Cards Exporter Plugin for Obsidian
More Markdown file suffix (.mdx/.svx)
4 years ago by swissmation.com
Use markdown files of additional file suffix as .mdx, .svx in Obsidian
My Bible
2 years ago by GsLogimaker
Your own customization bible in your personal vault!
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
Note Minimap
8 months ago by Yair Segel
Add a minimap to your Obsidian notes.
O2
3 years ago by haril song
Converts obsidian markdown syntax to other platforms.
Obsidian Clipper
3 years ago by John Christopher
Obsidian plugin that allows users to clip parts of a website into their obsidian daily note (or new note)
Obsidian GoLinks
4 years ago by David Brownman (@xavdid)
Turn go/links into clickable elements in Obsidian
Obsidian Handlebars Template Plugin
3 years ago by Sean Quinlan
This is a plugin for Obsidian adding support for the Handlebars template engine in Obsidian notes
Obsidian markdown export
3 years ago by bingryan
This plugin allows to export directory/single markdown to a folder. support output format(html/markdown/text)
Outline++
2 years ago by Ryota Ushio
OzanShare Publish
5 years ago by Ozan Tellioglu
This plugin allows you to publish your markdown notes with a single click directly from your Obsidian vault.
Pandoc Extended Markdown
3 months ago by ErrorTzy
This plugin enables Obsidian to render Pandoc extended markdown lists, and adds useful sidebar for lists and footnotes
Paste Link
2 years ago by Jose Elias Alvarez
Intelligently paste Markdown links in Obsidian.
Paste Mode
5 years ago by Jacob Levernier
Obsidian Notes plugin for pasting text and blockquotes to the cursor's current level of indentation.
PDF Folder to Markdowns
a year ago by CrisHood
Convert a folder of PDFs into a folder of Markdown files with embedded PDFs. This plugin is useful for users who want to migrate their PDF notes from different apps (e.g., Boox) or organize their reference materials inside Obsidian.
PDF++
2 years ago by Ryota Ushio
PDF++: the most Obsidian-native PDF annotation & viewing tool ever. Comes with optional Vim keybindings.
Pickly PageBlend
3 years ago by Dmitrii Mitrichev
The easiest way to share your Obsidian notes
Postfix
3 years ago by Bhagya Nirmaan Silva (@bhagyas)
A postfix plugin for Obsidian
Prettier
2 years ago by GoodbyeNJN
PubScale
3 years ago by piriwata
An obsidian plugin for insert your note into a PlanetScale table
qmd as md
4 years ago by Daniel Borek
A plugin for Obsidian that enables editing and compiling `qmd` Quarto files.
Quadro
2 years ago by Chris Grieser (aka pseudometa)
Obsidian Plugin for social-scientific Qualitative Data Analysis (QDA). An open alternative to MAXQDA and atlas.ti, using Markdown to store data and research codes.
Quarto Exporter
2 years ago by Andreas Varotsis
Export Obsidian notes to Quarto-compatible QMD files.
Quiet Outline
4 years ago by the_tree
Improving experience of outline in Obsidian
Quoth
4 years ago by Eric Rykwalder
ReadItLater
5 years ago by Dominik Pieper
Reason
2 years ago by Joshua Pham
Digest your Obsidian notes
Recipe Grabber
3 years ago by seethroughdev
Recipe view
3 years ago by lachholden
View your Obsidian notes as interactive recipe cards while you cook.
Recursive Copy
2 years ago by datawitch
Remove HTML Tag
2 years ago by ChenPengyuan
Sheet Plus
2 years ago by ljcoder
obsidian spreadsheets solutions
Sheets Extended
3 years ago by NicoNekoru
Plugin that adds features to tables in obsidian including merging, vertical headers, and custom css
Simple Columns
10 months ago by Josie
An Obsidian plugin that lets you create easily resizable and customizable columns in your notes.
Simple File Push
2 years ago by Kim Hudaya
Simple file push blog plugin
Simple Todo
a year ago by elliotxx
A minimalist text-based todo manager (Text-Based GTD) for efficient task management in Obsidian.
Slackify Note
2 years ago by Jeremy Overman
SlashComplete
5 months ago by Spiderpig86
Notion-style Markdown autocompletion for Obsidian.
Slides Extended
2 years ago by Erin Schnabel (original: MSzturc)
Create markdown-based reveal.js presentations in Obsidian
Slurp
2 years ago by inhumantsar
Slurps webpages and saves them as clean, uncluttered Markdown. Think Pocket, but better.
Smart Export
2 months ago by Iván Sotillo
Plugin that follows wikilinks to a configurable depth, joining the notes into a single export.
Spoilers
2 years ago by Jacobtread
Spoiler blocks for Obsidian
Strip Internal Links
2 years ago by Adi Ron
A simple Obsidian plugin to strip internal links from files
Student Repo
a year ago by Feirong.zfr
学生知识库助手(Student Repository Helper)是一个面向学生或学生家长的Obsidian 插件,这款插件旨在解决学生在学习阶段面临的资料管理难题,将学习过程中产生的各类重要资料,如试卷、笔记、关键文档、绘画手工作品等,进行系统性的数字化整合与管理,并利用 AI 助手定期进行学习分析总结。随着时间的推移,它将助力你逐步搭建起一座专属你自己的知识宝库,这座宝库将伴随你一生,成为你知识成长与积累的见证。
Table Checkbox Renderer
5 months ago by Daniel Aguerrevere
Interactive checkboxes for Markdown tables in Obsidian. Toggle checkboxes in Reading Mode and instantly update your Markdown file. Supports multiple checkboxes per cell and any table layout.
Table Extended
5 years ago by AidenLx
Extend basic table in Obsidian with MultiMarkdown table syntax
Table Generator
4 years ago by Boninall
A plugin for generate markdown table quickly like Typora.
Task list
2 years ago by Ted Marozzi
A simple obsidian plugin enabling better task management via lists.
Title As Link Text
a year ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
Tweet to Markdown
5 years ago by kbravh
An Obsidian.md plugin to save tweets as Markdown files.
WeWrite
a year ago by Learner Chen
Obsidian plugin to render note as WeChat MP article.
WhatsApp export note
a year ago by JoaoEmanuell
Obsidian plugin to export notes for whatsapp
Yesterday
2 years ago by Dominik Mayer
Obsidian plugin providing Yesterday journaling support