obsidian-embedded-note-titles icon indicating copy to clipboard operation
obsidian-embedded-note-titles copied to clipboard

FR: Allow arbitrary formatting of title

Open SkepticMystic opened this issue 2 years ago • 0 comments

This could be a difficult one. What I'm looking for is to be able to pass the note title thru any JS function that returns a string, and have the output displayed instead.

My main use case is the split dendron note names:

Math.Linear Algebra.MatrixMatrix

I'd be able to supply a function:

function dendronSplit(title) {
    return title.split('.').last()
}

This might be much more than is necessary or useful, but I imagine others would like to be able to format the title. Even if you just allow a specific option to split dendron note titles, I'm happy. But this option is more extensible

SkepticMystic avatar May 19 '22 10:05 SkepticMystic