leolaurindo2 downloadsConvert lists, tables and task lists into Obsidian base. One note per item.
Convert a selected list, task list, or table into an Obsidian base.
Each list item, checkbox, or table row becomes its own note with frontmatter yaml, and Basify creates a base that shows those notes as a table.
Your choices are remembered and prefilled the next time. Even though the parser and dialog helps normalizing file names, field names and dates, I advise you to use a Linter along with Basify.
Every item becomes a note named after it.
- Alan Turing
- Grace Hopper
Becomes Alan Turing.md and Grace Hopper.md. The .base file is named after the output folder (for example People.base for the People folder).
Checkbox lists become notes with a boolean property for the checkbox state ([x] → true, [ ] → false).
- [x] Buy milk type: groceries
- [ ] Pay bills due:2026-08-04
Becomes Buy milk.md (with status: true and type: groceries) and Pay bills.md (with status: false and due: 2026-08-04), and the base shows a checkable status column.
One column becomes the note filenames (you can choose); every other column becomes a frontmatter property.
| Name | Author | Year |
|---|---|---|
| Rebellion in the Backlands | Euclides da Cunha | 1902 |
| What is the Third State? | William Gibson | 1984 |
| The Black Jacobins | C. L. R. James | 1938 |
| John Coltrane: His Life and Music | Lewis Porter | 1998 |
These become, depending on the normalization you choose
Rebellion in the Backlands.md
what-is-the-third-state.md # converting spaces into dashes and toggle lowercase
The_Black_Jacobins.md # converting spaces to underscores
John-Coltrane-His-Life-and-Music.md # converting spaces into dashes
... each with author and year properties, and a base that reproduces the table.
Even though obsidian's markdown don't recognize tables without a header row as tables they are supported too — columns are named Column 1, Column 2, ... and you can rename them with the field names option in the dialog.
Everything you can configure in the dialog:
Folders
.base file is created.Note names
title), with its own spaces in name field separator and lowercase name field option, independent of the filename.Publication Year → publication_year).List metadata (lists and task lists)
#tag (and nested #tag/sub) become a tags list property.due:2025-01-01, start:2026-08-01, or @2023-04-05 become fields named after the label (due, start, date, ...). An unlisted label (e.g. meeting:2026-01-01) falls back to a date field — only the first one; extra ones stay in the name.key:value pair becomes a field (so type: task → a type field). It supersedes the tag and date options: when it's on, tags and dates are extracted too.Extracted metadata is removed from the note filename.
Task lists
status).Tables
Column 1, Column 2, ...).Base
.base file, or Embed in this note (insert a base code block in place of the selection)..base file mode, also insert a link to the base file in the current note.Property names are normalized to work in bases: spaces and dashes become underscores (for example Publication Year becomes Publication_Year), and can optionally be lowercased (publication_year).
Values are converted with minimal parsing, so Obsidian keeps useful types:
1867) stay numbers.true and false become booleans; checkbox lists always produce a boolean status.For better cleaning and normalization of the generated frontmatter, install the Linter community plugin and run it after converting.
In Settings → Community plugins → Basify you can control which folders the dialog is prefilled with:
.base file.Each can be one of:
The dialog is always the source of truth: whatever you set there is what's used, and it becomes the "last used" value for the next time.
Basify creates new files but never modifies or deletes existing ones. Still, make sure you have a backup of your vault before using it, as with any vault automation.
main.js, manifest.json, styles.css to <Vault>/.obsidian/plugins/basify/.Requires Obsidian 1.13.0+ (Bases).
npm install
npm run dev # watch mode
npm run build # production build (tsc + esbuild)
npm run test # unit tests (no extra dependencies)
npm run lint # eslint