Note From Form

by Sergei Kosivchenko
5
4
3
2
1
Score: 32/100

Description

The Note From Form plugin allows users to create dynamic, form-driven note templates in Obsidian. It extends the functionality of the core Templates plugin by introducing customizable input fields, initial values, and user-defined JavaScript functions for generating template data. Users can design interactive forms with text, numbers, dates, dropdowns, and more. Templates can define how note names, file locations, and note content are created using input-driven logic. Custom logic is supported via Mustache templates or JavaScript functions, enabling advanced formatting and automation. This plugin is ideal for users who want to create repeatable, structured notes, like project templates, meeting notes, or task lists, while maintaining flexibility in how data is captured and used.

Reviews

No reviews yet.

Stats

6
stars
460
downloads
0
forks
500
days
9
days
533
days
6
total PRs
0
open PRs
0
closed PRs
6
merged PRs
2
total issues
2
open issues
0
closed issues
18
commits

Latest Version

README file from

Github

Note From Form

Obsidian plugin that allows to define form with different type of input fields and JavaScript support that will later be used together with template to generate notes.

It behaves same as Templates Core plugin or From Template but extend it functionality with strongly typed fields, allow initial values and support user defined JavaScript functions for value generations.

Consider having template like this

---
tags: tag1, tag2
aliases: alias1
date: {{date}}
note-from-form: {
	"file-name": "t:My Note {{noteNum}}",
	"file-location": "f:function(view){ return 'My Folder'; }",
	"form-items": [
		{
			"id": "date",
			"type": "dateTime",
			"get": "t:yyyy-MM-DDTHH:mm:ss",
			"form": {
				"title": "Note Date"
			}
		},
		{
			"id": "chapterNum",
			"type": "number",
			"init": "v:1",
			"form": {
				"title": "Chapter number"
			}
		},
		{
			"id": "title",
			"type": "text",
			"form": {
				"title": "Title",
				"description": "Title of Note",
				"placeholder": "My New Note"
			}
		},
		{
			"id": "noteNum",
			"type": "number",
			"get": "f:function (view) { return moment(view.date).format('x'); }"
		}
	]
}
---

# Chapter {{chapterNum}}: {{title}}

After adding template to the index and call for template, following form will be displayed:

image

And will generate following Markdown and add it to the note named My Note 1727640827748 where 1727640827748 is Unix timestamp of Note Date field. Note will be created in directory named My Folder.

---
tags: tag1, tag2
aliases: alias1
date: 2024-09-29T22:13:47

---

# Chapter 1: This is title

Using

  1. Install plugin
  2. Open plugin settings and and set location of template files. Also you can specify obsidian property that will point to template definition: image
  3. Create set of templates that will be used by plugin to generate input form and new notes. See Template Description;
  4. In plugin settings press Re-build button or run Note From Form: Re-Build Template Index from Command palette.

If template files have no issues Obsidian command pallete wil be enriched with new commands in format Note From Form: Your Template Name. Use commands from command pallete to create new note from template.

Template Description

Form and note template are defined as markdown files that supports mustache syntax for values that need to be placed from form. Instructions for form itself are defined as JSON object inside properties. Property name might be defined in plugin settings or be a default value note-from-form.

Form template contains following fields:

  • file-name used to define name of the result file;
  • file-location used to define folder where new note will be stored;
  • form-items used to define content of the input form or compute values for template based on the input or user-defined logic.

file-name

Used to specify name of the file for new note.

This property should be initialized with following format <type>:<value>. type specifies outcome of the value and might be one of the following:

  • v. In this case content after : will be used as result/ For example v:My File;
  • t. In this case post-processed input form will be used as source for mustache template passed after :. For example, t:My Note {{noteNum}};
  • f. In this case user defined JavaScript function can be specified. Function accepts only one parameter that is object constructed from all fields defined in form-items after calling get function (see bellow) for each of them. This might be used in case if result should be computed based on some complex logic not supported by mustache templates. For example, f:function(view) { return "My Value" + moment(Date.now()).format(); }

file-name is optional and if not defined, textbox with input for new file name will be displayed on input form.

file-location

Used to specify location of file with new note in Obsidian vault.

This property should be initialized with following format <type>:<value>. type specifies outcome of the value and might be one of the following:

  • v. In this case content after : will be used as result/ For example v:My File;
  • t. In this case post-processed input form will be used as source for mustache template passed after :. For example, t:My Note {{noteNum}};
  • f. In this case user defined JavaScript function can be specified. Function accepts only one parameter that is object constructed from all fields defined in form-items after calling get function (see bellow) for each of them. This might be used in case if result should be computed based on some complex logic not supported by mustache templates. For example, f:function(view) { return "My Value" + moment(Date.now()).format(); }

file-location is optional and if not defined value specified in plugin settings would be used. In case if plugin settings are missing it, textbox for input will be displayed on input form.

form-items

Is array of items that are defining structure and content of input form and used as source for generating object that will be later used by plugin as source for mustache blocks inside template.

Each item of array may have following structure:

{
	"id": "filed Id",
	"type": "field type",
	"init": "init funtion",
	"get": "get function",
	"form": {
		"title": "title of field on form",
		"placeholder": "for text filed shows some placeholder",
		"description": "descrition of the filed on form"
	}
}
Field Name Is Mandatory Description Possible values
id yes Declare identifier of the filed in form. By this identifier field can be later referenced inside user defined function or mustache template string with field name, i.e. date
type yes Specify type of input field. Type of the field allow you to control what user can input, what operations can be done and how field would be displayed text, textArea, date, time, dateTime, number
init no Init function. Used to get initial value of field. In case if not specified, default value would be used Pure values or user defined functions (see below)
get no This is function that is called after all input provided and used to create result object that will be used as source of values for template, file-name and file-location Pure value, mustache template or user defined function
form no Instructs plugin how to render field on form. This property might be skipped if some computed values are needed but shouldn't be changed by user Complex object that have title, placeholder and description fields
title no Used to provide user-friendly name of the field. Any string
placeholder no For fields of text and textArea types might be used as filed placeholder. For other types is not used Any string
description no Used to provide user-friendly description of the field on input form Any string

get function

get function used to get final result of intput and generate model used as source for template mustache blocks. It might be defined in one of three variants:

  • v:<value>. This instructs get function to return string value defined after :. For example, v:Hello World! will return Hello World! string and assign it to appropriate field in model used in mustache blocks of template;
  • t:<mustache string>. This instructs This instructs get function to collect all values defined in form-items and use it as source for mustache template defined in <mustache string>. For example, t:Hello {{who}}! will take filed from form-items with id who and use it value for template. Consider, who is set to world than result of t:Hello {{who}}! would be Hello world! string; f:<JS function text>. This instructs get function to execute function defined in <JS function text>. For example, f:function(view) { return view.myfield + '+ 1'; }.

Function can be useful to produce values based on user input or values that do not need to be provided by user.

Function accept single argument that is JS object with fields defined in form-items with latest values entered by user and expected to return string. Function have following TS declaration:

function(view: Record<string, any>): string;

[!warning]:

f:<JS function text> use JavaScript eval() call to translate text into executable. Use it carefully!

If not specified, default variant is used that returns string representation of field.

init function

init function used to set initial values of fields declared in form-items. init function might be defined in one of two variants:

  • v:<value>. Instructs init function to initialize form field from string specified in <value>. Based on filed type appropriate casting will be done;
  • f:<JS function text> use JavaScript function defined in <JS function text> to initialize form field.

Function accept no arguments and expect to return object with type equivalent to defined in type. Function have following TS declaration:

function<TFieldType>(): TFieldType;

[!warning]:

f:<JS function text> use JavaScript eval() call to translate text into executable. Use it carefully!

If not specified, default value will be used.

Input type fields

Following field types are supported:

  • text
  • textArea
  • number
  • date
  • time
  • dateTime
  • checkbox
  • dropdown
text and textArea

Simple single line text input field.

If init function is not set, than empty string used as default value;

If get function is not set, latest user input will be returned.

For this type of field user can specifu placeholder inside form field of form-items item.

In model passed as argument to get function field type would be string.

textArea is same to text but provides multiline.

number

Generates field for numeric input.

If init function is not set, than 0 used as default value;

If get function is not set, latest user input will be returned.

In model passed as argument to get function field type would be number.

date, time and dateTime

Generates widget for user input of date, time or date & time.

If init function is not set, current date & time will be used as initial value.

If get function is not set, latest user input will be returned and formatted to string using moment.js. Based on the type different formatting will be used (see moment.js|Format)

  • date - L format will be used;
  • time - LTS format will be used;
  • dateTime - will format time based on system locale.

moment.js can be used inside get or init functions to manipulte date and time values.

This type extends t: definition of get. Instead of mustache template moment.js|Format string can be specified, i.e. t:t:YYYY-MM-DDTHH:mm:ss.

In model passed as argument to get function field type would be Date.

checkbox

Generate widget with switcher to select betwean true and false;

If init function is not set, false will be used as initial value.

If get function is not set, latest user input will be returned.

In model passed as argument to get function field type would be boolean.

dropdown

Generates widget with options where one may be selected.

Form item definition may look like this:

{
	"id": "dropdown",
	"type": "dropdown",
	"init": "v:[{\"k\":\"a\",\"v\":\"My A\"},{\"k\":\"b\",\"v\":\"My B\"},{\"k\":\"c\",\"s\":true,\"v\":\"My C\"}]",
	"form": {
		"title": "DropDown",
		"description": "My DropDown"
	}
}

init function must be set for this this type. As value it expects array of objects. Object should be following:

{
	"k": "key", 
	"v": "value",
	"s": true // optional
}

If get function is not set, latest v of selected object will be returned.

In model passed as argument to get function field type would be array of 1 element with object that have k and v fields.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
JSON Importer
4 years ago by farling42
Plug-in for Obsidian.md which will create Notes from JSON files
Shortcut Launcher
4 years ago by MacStories
Trigger shortcuts in Apple's Shortcuts app from Obsidian with custom commands.
Obsidian Dynamic Embed
4 years ago by Ivaylo Dimitrov Dabravin
Execute Code
4 years ago by twibiral
Obsidian Plugin to execute code in a note.
Enveloppe
4 years ago by Mara-Li
Enveloppe helps you to publish your notes on a GitHub repository from your Obsidian Vault, for free!
Note Auto Creator
4 years ago by Simon T. Clement
An Obsidian plugin for automatically creating notes when linking to non-existing notes
Packrat
4 years ago by Thomas Herden
Process completed instances of recurring items created by the Obsidian Tasks plugin
Linkify
4 years ago by Matthew Chan
Text Expander JS
4 years ago by Jonathan Heard
Obsidian plugin: Type text shortcuts that expand into javascript generated text.
Open File by Magic Date
4 years ago by simplgy
Note Linker
4 years ago by Alexander Weichart
🔗 Automatically link your Obsidian notes.
Day and Night
4 years ago by Kevin Patel
An Obsidian plugin to automatically switch between day and night themes based on a set schedule
New Note New Window
3 years ago by Pedro Reyes
Plugin for opening new notes in a floating window in Obsidian (https://obsidian.md)
Workona To Obsidian
3 years ago by Holmes555
Plug-in for Obsidian.md which will import Workona json file
Weekly Review
3 years ago by Brandon Boswell
Khoj
3 years ago by Debanjum Singh Solanky
Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (gpt, claude, gemini, llama, qwen, mistral). Get started - free.
Babashka
3 years ago by Filipe Silva
Run Obsidian Clojure(Script) codeblocks in Babashka.
Meld Build
3 years ago by meld-cp
Write and execute (sandboxed) JavaScript to render templates, query DataView and create dynamic notes.
Tab Rotator
3 years ago by Steven Jin
Obsidian Rotate opened tabs with a specified time interval
Cron
3 years ago by Callum Loh
Obsidian cron / schedular plugin to schedule automatic execution of commands
Personal Assistant
3 years ago by edony
A plugin that harnesses AI agents and streamlining techniques to help you automatically manage Obsidian.
Auto Template Trigger
3 years ago by Numeroflip
An obsidian.md plugin, to automatically trigger a template on new file creation
Pieces for Developers
3 years ago by Pieces For Developers
Pieces' powerful extension for Obsidian-MD that allows users to access their code snippets directly within the Obsidian workspace
Arcana
3 years ago by A-F-V
Supercharge your Obsidian note-taking through AI-powered insights and suggestions
Auto Front Matter
3 years ago by conorzhong
Auto Hyperlink
3 years ago by take6
Ruled template
3 years ago by YPetremann
An obsidian plugin that check rules to select which template to use.
Micro templates
3 years ago by epszaw
Flexible embedded micro templates powered by javascript functions
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
RunJS
3 years ago by eoureo
Let's run JavaScript easily and simply in Obsidian.
Attachment Manager
3 years ago by chenfeicqq
Attachment folder name binding note name, automatically rename, automatically delete, show/hide.
YouVersion Linker
3 years ago by Jaanonim
Obsidian plugin that automatically link bible verses to YouVersion bible.
Gnome Terminal Loader
3 years ago by David Carmichael
Local Backup
3 years ago by GC Chen
Automatically creates a local backup of the vault.
Codeblock Template
3 years ago by Super10
A template plugin that allows for the reuse of content within Code Blocks!一个可以把Code Block的内容重复利用模板插件!
Search Templates Library
3 years ago by Pentchaff
Obsidian plugin that allows to store searches templates for later use, and displays search results both in the search view and graph view.
Modal forms
2 years ago by Danielo Rodriguez
Define forms for filling data that you will be able to open from anywhere you can run JS
Tag Breakdown Generator
2 years ago by Hananoshika Yomaru
Break down nested tags into multiple parent tags
Auto Filename
2 years ago by rcsaquino
Auto Filename is an Obsidian.md plugin that automatically renames files in Obsidian based on the first x characters of the file, saving you time and effort.
Frontmatter generator
2 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
Run
2 years ago by Hananoshika Yomaru
Generate markdown from dataview query and javascript.
R.E.L.A.X.
2 years ago by Syr
Regex Obsidian Plugin
Object Writer
2 years ago by Iago Grah
Object writing plugin for Obsidian.md (https://obsidian.md).
YouTube Template
2 years ago by sundevista
📺 A plugin that would help you to fetch YouTube videos data into your vault.
RSS Copyist
2 years ago by aoout
Get the RSS articles as notes.
Daily note creator
2 years ago by Mario Holubar
Automatically creates missing daily notes.
Templated daily notes
2 years ago by digitorum
Allow to create templayted daily note in specific folder
AI Tagger
2 years ago by Luca Grippa
Simplify tagging in Obsidian. Instantly analyze and tag your document with one click for efficient note organization.
Prompt ChatGPT
2 years ago by Coduhuey
Differential ZIP Backup
2 years ago by vorotamoroz
Note Toolbar
2 years ago by Chris Gurney
Flexible, context-aware toolbars for your notes in Obsidian.
Automation
2 years ago by Benature
Personal OS
2 years ago by A.Buot
LinkMagic
2 years ago by AndyReifman
Fuzzy Note Creator
2 years ago by HaloGamer33
An Obisidan plugin for quickly creating notes with the help of a fuzzy finder. Now with templates!
Notes 2 Tweets
2 years ago by Tejas Sharma
Generate and schedule tweets automatically from your notes on Obsidian
Templify
2 years ago by Boninall
A releases repo for custom editable template in Obsidian.
Rapid AI
2 years ago by Rapid AI
AI Assistant for selected text and generating content with Markdown. Shortcuts and quick action buttons provide instant AI assistance. It provides a high availability API for unlimited Chat GPT request rates, so you can ensure smooth work for any workload.
Substitutions
2 years ago by BambusControl
Automatic text replacer for Obsidian.md
Watched-Metadata
2 years ago by Nail Ahmed
Watches for changes in metadata and updates the note content accordingly.
Daily Note Structure
2 years ago by db-developer
This obsidian plugin creates a structure for your daily notes
Note Linker with Previewer
2 years ago by Nick Allison
Obsidian Plugin to find and Link notes
Paste as Embed
2 years ago by Matt Laporte
Obsidian plugin to paste contents of clipboard into a new note, and embed it in the active note.
Note 2 Tag Generator
2 years ago by Augustin
Fast Image Auto Uploader
2 years ago by Longtao Wu
upload images from your clipboard by gopic
Smart Templates
2 years ago by 🌴 Brian Petro
Smart Templates is an AI powered templates for generating structured content in Obsidian. Works with Local Models, Anthropic Claude, Gemini, OpenAI and more.
Current File
2 years ago by Mark Fowler
An Obsidian plugin to allows external applications to know what file Obsidian is currently viewing
Snippets Manager
2 years ago by Venkatraman Dhamodaran
Snippets Manager (Text Expander) For Obsidian
Pug Templates
2 years ago by Nicholas Wilcox
An Obsidian plugin that enables the usage of Pug templates.
Auto Periodic Notes
2 years ago by Jamie Hurst
Obsidian plugin to create new periodic notes automatically in the background and allow these to be pinned in your open tabs. Requires the "Periodic Notes" plugin.
Templater
5 years ago by SilentVoid
A template plugin for obsidian
Snippets
5 years ago by Pelao
Buttons
5 years ago by Sam Morrison
Buttons in Obsidian
Hotkeys for templates
5 years ago by Vinzent
Regex Pipeline
5 years ago by No3371
An Obsidian plugin that allows users to setup custom regex rules to automatically format notes.
Liquid Templates
5 years ago by Diomede Tripicchio
Define your templates with LiquidJS tags support
Zoottelkeeper
5 years ago by Akos Balasko
Obsidian plugin of Zoottelkeeper: An automated folder-level index file generator and maintainer.
Apply Patterns
5 years ago by Jacob Levernier
An Obsidian plugin for applying patterns of find and replace in succession.
Shell commands
5 years ago by Jarkko Linnanvirta
Execute system commands via hotkeys or command palette in Obsidian (https://obsidian.md). Some automated events are also supported, and execution via URI links.
Daily Named Folder
5 years ago by Nemo Andrea
Like daily note, but nested in a daily folder and some more improvements
CustomJS
5 years ago by Sam Lewis
An Obsidian plugin to allow users to reuse code blocks across all devices and OSes
JavaScript Init
5 years ago by ryanpcmcquen
Run custom JavaScript in Obsidian.
Webhooks
5 years ago by Stephen Solka
Connect obsidian to the internet of things via webhooks
From Template
4 years ago by mo-seph
Simple plugin to create Notes from a template, and fill in fields defined there
Jura Links
2 years ago by Lukas Collier & Emi Le
Verlinke deine Normangaben, Aktenzeichen oder Fundstellen in deiner Obsidian Notiz mit Gesetzesanbietern.
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.
Metadata Auto Classifier
2 years ago by Beomsu Koh
AI-powered Obsidian plugin that automatically classifies and generates metadata (tags, frontmatter) for your notes.
Smart Composer
a year ago by Heesu Suh
AI chat assistant for Obsidian with contextual awareness, smart writing assistance, and one-click edits. Features vault-aware conversations, semantic search, and local model support.
NeuroVox
a year ago by Synaptic Labs
Obsidian plugin for transcription and generation
Todos sort
a year ago by Jiri Sifalda
A plugin for Obsidian that sorts todos within a note
Visual Crossing Weather
a year ago by willasm
Template by Note Name
a year ago by Jacob Learned
A simple Obsidian plugin to automatically template notes based on their title
pycalc
a year ago by pycalc
Hanko
a year ago by Telehakke
Obsidian plugin.
Sentinel
a year ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to update properties or run commands based on document visibility changes.
Missing Link File Creator
a year ago by Lemon695
The plugin creates both missing links and the corresponding files.
Plugin REPL
a year ago by readwithai
An in-note Read Evaluate Print Loop to execute JavaScript within Obsidian
InlineAI
a year ago by FBarrca
New Note Fixer
a year ago by mnaoumov
Obsidian Plugin that unifies the way non-existing notes are created when clicking on their links
MCP Tools
a year ago by Jack Steam
Add Obsidian integrations like semantic search and custom Templater prompts to Claude or any MCP client.
AI Providers
a year ago by Pavel Frankov
This plugin is a hub for setting AI providers (OpenAI-like, Ollama and more) in one place.
Enhanced Canvas
a year ago by RobertttBS
When editing on Canvas, properties and Markdown links to notes are automatically updated, enabling backlinks in Canvas.
Varinote
a year ago by Giorgos Sarigiannidis
A plugin for Obsidian that allows you to add variables in Templates and set their values during the Note creation.
Mastodon Threading
a year ago by El Pamplina de Cai
Obsidian plugin to compose and post threads to Mastodon
AI integration Hub
a year ago by Hishmat Salehi
A modular AI integration hub for Obsidian
Organized daily notes
a year ago by duchangkim
Automatically organizes your daily notes into customizable folder structures for better organization and easier navigation.
Hotstrings
a year ago by wakywayne
Runsh
a year ago by Ddone
A simple plugin that allows to run shell commands from obsidian.
EUpload
a year ago by Appleex
Obsidian 插件,专用于上传文件到存储仓库。目前支持 Lskypro(兰空图床),后续有需求会引入其它存储方式,如:Github/Gitee等等。
Inkporter
a year ago by Ayush Kumar Saroj
Inkporter is an Obsidian plugin that digitizes handwritten notes with smart ink isolation, adaptive theming, and seamless import workflows.
Forms
a year ago by Sorin Mircea
Automatic Linker
a year ago by Kodai Nakamura
Last Position
a year ago by saktawdi
Automatically scroll to the last viewed position when opening the markdown document.
Vault File Renamer
a year ago by Louan Fontenele
Vault File Renamer: Automatically standardizes file names to GitHub style (lowercase, no accents, only -, ., _) while preserving folder structure and file contents.
Rsync
a year ago by Ganapathy Raman
An Obsidian plugin to perform sync files between machines using Rsync
Task Mover
a year ago by Mariia Nebesnaia
A plugin for obsidian to move unfinished tasks to the daily note automatically
Title As Link Text
a year ago by Lex Toumbourou
An Obsidian plugin to set the Link Text using the document title
KOI Sync
a year ago by Luke Miller
AI Tagger Universe
a year ago by Hu Nie
An intelligent Obsidian plugin that leverages AI to automatically analyze note content and suggest relevant tags, supporting both local and cloud-based LLM services.
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Blog AI Generator
a year ago by Gareth Ng
Obsidian Plugin: generate blog via AI based on the current note.
tidit
a year ago by codingthings.com
tidit is an Obsidian - https://obsidian.md - plugin that adds timestamps to your document as you type — when you want it, how you want it, where you want it.
Copy Local Graph Paths
a year ago by Amy Z
copy-local-graph-paths is a simple Obsidian plugin that copies the paths of notes linked to your current page.
IMSwitch in Math Block
a year ago by XXM
One Step Wiki Link
a year ago by Busyo
用于 Obsidian 一步插入当前界面匹配到的所有外链(维基链接)
AI Note Tagger
a year ago by Jasper Mayone
Auto tagging obsidian notes w/ AI
Note to RED
a year ago by Yeban
一键将 Obsidian 笔记转换为小红书图片进行导出
Auto Daily Note
a year ago by John Dolittle
Daily Notes Automater
a year ago by David Pedrero
Tasks Cleaner
a year ago by lowit
🧹 Tasks Cleaner is a plugin for Obsidian that helps you automatically remove old completed tasks from your Markdown notes
Create Note with Date in This Directory
a year ago by Sangrak Choi
Obsidian plugin for creating a note with current date in this directory
NoteMover shortcut
a year ago by Lars Bücker
Quickly and easily move notes to predefined folders. Perfect for organizing your notes.
Template Filename
a year ago by Callum Alpass
Obsidian plugin for creating notes with templatable filenames
Note UID Generator
a year ago by Valentin Pelletier
Allow you to automatically generate UID for the notes in your vault.
Character Sheets
10 months ago by Grayvox
Create character sheets for your very own traumatized little guys with Obsidian.
Discord Message Sender
10 months ago by okawak
Obsidian Plugin: Send messages from a Discord channel to your Vault
Auto Replacer
10 months ago by Alecell
A live text replacement plugin that applies automatic formatting, corrections, or custom replacements in real-time. Define your own regex-based rules and transformation logic to modify text dynamically as you type.
Current View
10 months ago by Lucas Ostmann
Automatically set the view mode (Reading, Live Preview, Source) for notes in Obsidian using folder rules, file patterns, or frontmatter.
Simple Vault Importer
10 months ago by WebInspectInc
Timeline Canvas Creator
10 months ago by chris-codes1
Quickly create timeline structured canvases in Obsidian.
Dataview (to) Properties
9 months ago by Mara-Li
Sync inline Dataview to properties (YAML frontmatter)
Random Wikipedia Article
9 months ago by SpencerF718
An Obsidian plugin to generate a note of a random Wikipedia article.
Note Companion AI
8 months ago by Benjamin Ashgan Shafii
Note Companion: AI assistant for Obsidian that goes beyond just a chat. (prev File Organizer 2000)
Content OS
8 months ago by eharris128
Post to LinkedIn from within Obsidian
Custom Comments
8 months ago by Jack Chronicle
Adds a method to create custom methods to enclose comments
NotePix
8 months ago by Ayush Parkara
NotePix automatically uploads images, screenshots from your Obsidian vault to a designated GitHub repository. It then seamlessly replaces the local link with a fast URL, keeping your vault lightweight and portable.
URL Formatter
8 months ago by Thomas Snoeck
Automatically formats specific URLs pasted into Obsidian into clean Markdown links.
Move Cursor On Startup
8 months ago by Jared Kelnhofer
Obsidian plugin to move the cursor to the right and back to the left when starting up. Why? To keep DataView expressions from not running on the first load of, say, your Home file.
Google Calendar Importer
7 months ago by Fan Li
A simple and light-weighted google calendar importer, allow injecting the events / tasks of a day automatically to your daily notes, or import it to anywhere with a command.
Emoji selector
6 months ago by summer
Insert custom emojis with quick search, auto-suggestions, and customizable templates.
Open or Create File
6 months ago by Ilya Paripsa
Set up Obsidian commands that create or open files based on predefined patterns.
Steward
6 months ago by Dang Nguyen
A vault-specific agent equipped with agentic capacity, fast search, flexible commands, vault management, and terminals to "jump" into other CLI agents, such as Claude, Gemini, etc.
Default Template
4 months ago by raeperd
obsidian plugin to set default template for new notes
Handlebars Dynamic Templating
3 months ago by Hide_D
Handlebars dynamic templating. Define template files and use them dynamically via hb blocks. Template recursion is also possible.
Blueprint
3 months ago by François Vaux
Repeatable templates plugin for Obsidian
LongtimeDiary
a month ago by sawamaru
Show past Daily notes on the same day in previous years.
Smart Export
a month ago by Iván Sotillo
Plugin that follows wikilinks to a configurable depth, joining the notes into a single export.