You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be very helpful if this plugin can convert multi-word tags in Zoteto into Obsidian tags using the current #{{keyword}} syntax. For example, tag like 'Tag with space' should be converted to #Tag_with_space instead of #Tag with space.
It's very common that multiple words are used to name Zotero tags and collection, because Zotero support doing so. And because Obsidian only support tags without blank spaces, the current conversion of multi-word tag looks broken.
I dig around the source and made this modification to makeTags function:
Looks better. Then I tried the comment tags (tags in {{PDFnote}}), and found that in the current version the in-tag spaces are removed before makeTags
So the handling of Tags is not consistent in the plugin.
Suggestion
Before makeTags, format tag texts to remove/replace in-tag spaces according to a configurable format setting (choosing from camel case, snake case , etc.)
The text was updated successfully, but these errors were encountered:
Can we just add support for string literals in tags? If you enclose the tag in quotes (like #"A tag with spaces"), you could allow for any character inside the string.
Can we just add support for string literals in tags? If you enclose the tag in quotes (like #"A tag with spaces"), you could allow for any character inside the string.
I tried this but #"A tag with spaces" will not be rendered as a tag in Obsidian.
Thanks for this AMAZING plugin!
It would be very helpful if this plugin can convert multi-word tags in Zoteto into Obsidian tags using the current
#{{keyword}}
syntax. For example, tag like 'Tag with space' should be converted to#Tag_with_space
instead of#Tag with space
.It's very common that multiple words are used to name Zotero tags and collection, because Zotero support doing so. And because Obsidian only support tags without blank spaces, the current conversion of multi-word tag looks broken.
I dig around the source and made this modification to
makeTags
function:And it works like:
Looks better. Then I tried the comment tags (tags in {{PDFnote}}), and found that in the current version the in-tag spaces are removed before
makeTags
So the handling of Tags is not consistent in the plugin.
Suggestion
Before
makeTags
, format tag texts to remove/replace in-tag spaces according to a configurable format setting (choosing from camel case, snake case , etc.)The text was updated successfully, but these errors were encountered: