Skip to content

Commit

Permalink
fix(markdown): remove underline from markdown links
Browse files Browse the repository at this point in the history
  • Loading branch information
sho-87 committed Sep 9, 2024
1 parent e7eb180 commit 4376cd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/kanagawa-paper/highlights/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ local M = {}
function M.setup(colors, opts)
opts = opts or require("kanagawa-paper.config").options
local theme = colors.theme
local palette = colors.palette

return {
-- @variable various variable names
Expand Down Expand Up @@ -134,10 +135,9 @@ function M.setup(colors, opts)
-- @markup.environment environments (e.g. in LaTeX)
["@markup.environment"] = { link = "Keyword" },
--
-- @markup.link text references, footnotes, citations, etc.
-- @markup.link.label link, reference descriptions
-- @markup.link.url URL-style links
["@markup.link"] = { link = "@string.special.url" },
["@markup.link.url"] = { link = "@string.special.url" },
-- @markup.link.label link, reference descriptions
-- @markup.raw literal or verbatim text (e.g. inline code)
["@markup.raw"] = { link = "String" },
-- @markup.raw.block literal or verbatim text as a stand-alone block
Expand Down

0 comments on commit 4376cd2

Please sign in to comment.