Skip to content

mgmeyers/obsidian-easy-bake

Repository files navigation

Easy Bake

Compile your Obsidian notes into larger documents. This plugin is focused on simplicity. For more complex compilation scenarios, try kevboh's longform plugin.



Activate the plugin using the Bake current file command in Obsidian's command palette.

Links and embeds that exist on their own line will be copied into the compiled document. Inline links will be replaced with the link's text. This process is recursive, meaning links in linked files will also be copied into the final document.

For example,

## Section One

[[File one]]
[[File two]]

## Section Three

This is an [[File three|inline link]].

[[File four]]

will be compiled to:

## Section One

Content of file one
Content of file two

## Section Three

This is an inline link.

Content of file four