chhoumann / obsidian-excalidraw-plugin

A plugin to edit and view Excalidraw drawings in Obsidian

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Obsidian-Excalidraw plugin integrates Excalidraw, a feature rich sketching tool, into Obsidian. You can store and edit Excalidraw files in your vault, you can embed drawings into your documents, and you can link to documents and other drawings to/and from Excalidraw. For a showcase of Excalidraw features, please read my blog post here and/or watch the videos below.

Please upgrade to Obsidian v0.12.19 or higher to get the latest release.

image

Video walkthrough

Obsidian-Excalidraw 1.2.0 update - Major IMPROVEMENTS 1  Getting Started 2  Basic shapes and features
3  Groups 4  Stencil 5  embedding
6  Links 7  Markdown 8  Templates
9  Excalidraw Automate 10  Miscellaneous Image Elements
LaTex Demo markdown embeds markdownAdvanced
Script Engine sticky notes thumbnail plugin store
fourtfont

Key features

  • The plugin aims to integrate Excalidraw seamlessly into Obsidian including Command Palette actions, File Explorer features, Option Menu commands, and the Ribbon Button.
  • CTRL/CMD+Click on the ribbon button, or in the file explorer to create / open drawings in a new pane.
  • Settings will allow you to customize Excalidraw to your needs:
    • Default folder for new drawings and define custom filename pattern for new drawings.
    • Template for new drawings. The template will restore stroke properties. This means you can set up defaults in your template for stroke color, stroke width, opacity, font family, font size, fill style, stroke style, etc. This also applies to ExcalidrawAutomate.
    • If portability is important to you: Auto-export SVG and/or PNG files including keep-in-sync feature so you can embed SVG/PNG into your documents instead of embedding excalidraw files.
    • Specify the default width of embedded drawings.
    • Compatibility features to auto-export and keep in sync markdown excalidraw files and legacy .excalidraw files.
    • Experimental feature to add custom TAG to file explorer to mark drawing files.
    • Enable / disable autosave.
  • You can customize the size and position of the embedded images using the ![[image.excalidraw|100]], ![[image.excalidraw|100x100]], ![[image.excalidraw|100|left]], ![[image.excalidraw|right-wrap]], formatting options. ![[<filename.excalidraw>|<width>x<height>|<alignment>]]. You can add your custom alignment via CSS. Any text that appears in <alignment> will be added to the rendered SVG element style and to the wrapper DIV element. Check below and styles.css for more insight.
  • Supports hyperlinks e.g. https://zsolt.blog, [Obsidian](https://obsidian.md), and internal links e.g. [[My file in vault|Alias]] in drawing text.
    • Links will update when files are moved or renamed, if you have the Obsidian setting Files & Links/Automatically Update Internal Links enabled.
    • Links in drawings will show up in backlinks of documents
    • Transclusions are supported
      • ![[myfile#^blockref]] will convert in the drawing into the transcluded text of the block
      • ![[myfile#section]] also works, this will transclude the section
      • you can also specify word wrapping for transcluded text by adding the max character count in curly brackets right after the transclusion e.g. ![[myfile#^blockref]]{40} will wrap text at 40 characters.
    • For convenience you can also use the command palette to insert links into drawings
    • CTRL/CMD + hover to bring up the Obsidian quick preview for the link. (On Mac it is CTRL+CMD+hover).
    • CTRL/CMD + CLICK a text element to open it as a link.
    • CTRL/CMD + ALT + CLICK to create the file (if it does not yet exist) and open it
    • CTRL/CMD + SHIFT + CLICK to open the file in a new pane
    • CTRL/CMD + ALT + SHIFT + CLICK to create the file (if it does not yet exist) and open it in a new pane
  • Using the block reference you can also reference & transclude text that appears on drawings, in other documents
  • Insert LaTeX formulas using the Command Palette action "Insert LaTeX formula". You can edit formulas either in Markdown view, or by CTRL/CMD + Click on the formula.
  • Drag & Drop support
    • You can drag files from the Obsidian file explorer and they will become links to those files in Excalidraw.
    • Dragging image files (PNG, SVG, JPG, Excalidraw) from obsidian files explorer while pressing the CTRL/CMD button will embed the image into your drawing.
    • You can drag and drop images from outside obsidian onto Excalidraw. These images will be embedded into your drawing and saved to Obsidian.
    • You can drag and drop text from Markdown views onto Excalidraw.
    • You can drag and drop web addresses from your browser and they will become links.
  • Image support
    • On iOS and Android you can add images from your camera by pressing the add image button in Excalidraw.
    • You can copy/paste images into your drawing. Images will be saved in your vault.
    • You can drag and drop images as explained above.
  • Since 1.2.0 Drawing files are stored in Markdown files
    • You can add tags to drawings
    • You can add metadata to the YAML front matter of drawings
    • Anything you add between the frontmatter and the # Text Elements heading will be ignored by Excalidraw, i.e. you can add whatever you like here, it will be preserved as part of the document.
    • Excalidraw documents now show in graph view.
    • The following front matter keys will customize how the drawing is displayed - overriding general settings:
      • excalidraw-link-prefix: "📍" preview prefix for internal links
      • excalidraw-url-prefix: "🌐" preview prefix for external links
      • excalidraw-link-brackets: true|false whether or not to display brackets around links in preview
      • excalidraw-default-mode: view|zen Open this document in view mode or zen mode by defult. Default view mode is excellent for presentation slides.
  • Embed complete markdown files into your drawings
    • Drag from the desired file from the Obsidian file explorer and hold down CTRL/CMD while dropping the file onto the canvas.
    • Use the command palette action: Insert markdown file from vault
    • Use custom woff, woff2 or TTF font to display the document, you can set the default font to use under Excalidraw Settings.
    • You can set a custom css for rendering the snapshot image of your markdown document. Only operating system standard fonts are supported as the font-family (Win10, Mac & iOS), plus you can set one additional custom font using the setting explained above. (for a demonstration watch this video and check out this sample css).
      • To help with styling you can observe the SVG snapshot of the markdown document created by Excalidraw. Open Obsidian Developer Console (CTRL+Shift+i) and execute the following command: ExcalidrawAutomate.mostRecentMarkdownSVG
    • You can control appearance of the embedded markdown file on a file by file bases by adding the following front matter keys to your markdown document:
      • excalidraw-font: Virgil|Cascadia|font_file_name.extension
      • excalidraw-font-color: css-color-name|#HEXcolor|any-other-html-standard-format, you can find css color names here.
      • excalidraw-css: "css-filename|css snippet"
    • Switch to markdown view or use CTRL/CMD+ALT/OPT click on the image to edit properties of the embed: [[filename#^blockref|WIDTHxMAXHEIGHT]]
  • Includes full QuickAdd, Templater and Dataview support through ExcalidrawAutomate. Check out the detailed help + examples. I also have a YouTube ExcalidrawAutomate Playlist with lots of examples.
    • Since 1.5.0 you can easily execute ExcalidrawAutomate macros and assign command palette shortcuts to them, using the ScriptEngine. You will find an intro video and a growing library of ready to install scripts here.
  • REQUIRES AN OBSIDIAN SYNC SUBSCRIPTION: Full drawing file history and synchronization between devices
  • Multilanguage support: if you'd like to help out by translating the plugin, please get in contact with me.

Known issues

  • Mobile support
    • Partially mitigated in 1.0.10 by the introduction of autosave: Your drawing will not be saved when you terminate the mobile app by closing the Obsidian task.
  • Text elements "jumps off screen" when editing, if drawing is zoomed in and text element does not fit the visible screen area. I am working on a resolution.

Tips and tricks

  • Ozan's Image in Editor Plugin. In a nice collaboration with Ozan, his Image-in-Editor plugin now supports Excalidraw. I recommend installing his plugin to display drawings also in Edit mode.

Feedback, questions, ideas, problems

Join the conversation about the Excalidraw plugin on forum.obsidian.md

Please head over to GitHub to report a bug or request an enhancement.

Say Thank You

If you are enjoying Excalidraw then please support my work and enthusiasm by buying me a coffee on https://ko-fi/zsolt.

Please also help spread the word by sharing about the Obsidian Excalidraw Plugin on Twitter, Reddit, or any other social media platform you regularly use.

You can find me on Twitter @zsviczian, and on my blog zsolt.blog.

About

A plugin to edit and view Excalidraw drawings in Obsidian


Languages

Language:TypeScript 99.9%Language:CSS 0.1%Language:JavaScript 0.0%