-
Notifications
You must be signed in to change notification settings - Fork 241
Open
Labels
bugSomething isn't workingSomething isn't working
Description
π Describe the bug
When using the obsidian.nvim
plugin to autocomplete tags in Obsidian notes, the Unicode character "β―" (U+276F) is inserted into the tags. This causes LaTeX errors when attempting to convert the notes to PDF using Pandoc.
Steps to Reproduce:
- Open Neovim with the
obsidian.nvim
plugin installed. - Attempt to autocomplete tags in an Obsidian note.
- Use Pandoc to convert the note to PDF.
- Observe the LaTeX error:
Error producing PDF.
! LaTeX Error: Unicode character β― (U+276F)
not set up for use with LaTeX.
Expected Behavior:
The tags should not contain the Unicode character "β―".
Actual Behavior:
The tags contain the Unicode character "β―", causing LaTeX errors.
Config
{
"epwalsh/obsidian.nvim",
version = "*",
ft = "markdown",
dependencies = {
"nvim-lua/plenary.nvim",
},
opts = {
workspaces = {
{
name = "personal",
path = "~/vaults/personal",
},
{
name = "work",
path = "~/vaults/work",
},
},
mappings = {
["gf"] = {
action = function()
return require("obsidian").util.gf_passthrough()
end,
opts = { noremap = false, expr = true, buffer = true },
},
},
ui = {
enable = false,
},
},
},
Environment
NVIM v0.10.1
Build type: Release
LuaJIT 2.1.1713484068
Run "nvim -V1 -v" for more info
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working