-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Additional markdown syntax not rendering #286
Comments
Same issue here
|
Hey @catasaurus, please check if your |
Just to reiterate, obsidian.nvim sets explicit conceal characters, so either vim.opt_local.conceallevel = 2 I've just pushed a commit that will warn users when they have obsidian.nvim's UI features enabled yet their conceallevel isn't set correctly. |
@epwalsh I think the conceal-level warning could be useful. But how do I turn the warning off if I want to see all characters, and actually have |
@FilipHarald you can simply disable this plugin's UI features by setting |
Thanks for all the help! Sorry I took a while to check back on this. |
is it possible to suppress the warning without turning off the the feature? I have a |
Hey @anuramat you could set |
@epwalsh It would be awesome to have this warning disable option. Because I use only conceallevel=0, and I need only colorized checkboxes. But when I open my notes this warning is disrupting me all time from doing another things. |
@epwalsh, I know this is closed, but a related question: should this configuration work in LazyVim as well? As you can see in this recording, with Thanks for any guidance! Screen.Recording.2024-05-01.at.6.08.20.PM.mov |
@robertjdominguez that looks like a font issue. If you don't have a patched font you'll need to use different characters than what's in the README. |
Bang on! Great call — thanks, @epwalsh 🙏 |
Hi JFYI, ["markdown_oxide"] = function ()
lspconfig.markdown_oxide.setup({
capabilities = capabilities, -- again, ensure that capabilities.workspace.didChangeWatchedFiles.dynamicRegistration = true
---@diagnostic disable-next-line:unused-local
on_attach = function (client, bufnr)
-- refresh codelens on TextChanged and InsertLeave as well
vim.api.nvim_create_autocmd({ 'TextChanged', 'InsertLeave', 'CursorHold', 'LspAttach' }, {
buffer = bufnr,
callback = vim.lsp.codelens.refresh,
})
-- trigger codelens refresh
vim.api.nvim_exec_autocmds('User', { pattern = 'LspAttached' })
-- setup conceallevel to enable it in obsidian.nvim
vim.opt.conceallevel = 2
end
})
end And to disable the warning message I have to set it again in obsidian.nvim setup function. |
🐛 Describe the bug
When I create checkboxes, they simply do not render. I don't know the expected behavior for the rendering of other markdown, but I have seen screenshots of checkboxes rendered. I know I wrote them right as when I open the file in Obsidian (the desktop client), they render perfectly fine.
The text was updated successfully, but these errors were encountered: