Obsidian 0.16.3
includes a better native implementation of this plugin, which can be enabled at Settings > Appearance > Show tab title bar
. This plugin will continue to work with Obsidian 0.15.x
, but it won't be updated going forward.
This plugin embeds the note path at the top of each note in both preview and edit mode. This plugin does not modify notes, and the path is not a part of the document itself.
Features:
- The embedded paths can be styled using the Style Settings plugin
- Paths can be hidden or overridden by a file's frontmatter
- Paths can be hidden if when a level 1 heading is present
- Leading/trailing slashes can be enabled if desired
- The filename can be displayed if desired
In general, this plugin attempts to size the paths to align with the note content. Some themes may have styling that conflicts with these calculations. If you notice misalignment between the path and the note, the paths can be styled via css like so:
h1.embedded-note-path {
/* ...reading mode styles... */
}
h1.cm-line.embedded-note-path {
/* ... live preview / edit mode styles ... */
}
You may also need to account for readable line length:
.is-readable-line-width h1.embedded-note-path {
/* ...reading mode styles... */
}
.is-readable-line-width h1.cm-line.embedded-note-path {
/* ...reading mode styles... */
}
This plugin is a fork of mgmeyers/obsidian-embedded-note-titles with a few changes.