Skip to content

Commit b3efd64

Browse files
fix: separate twitter and x link icons
## Details Based on: #604 Co-authored-by: Caleb White <cdwhite3@pm.me>
1 parent 48934b4 commit b3efd64

5 files changed

Lines changed: 13 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
[99bfa5d](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/99bfa5d61381a29eedc75810898cb9c0fc755064)
1212
- add priority to sign configuration [#601](https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/601)
1313
[996ec12](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/996ec12e1164e56401babf236c56cb2d9321d923)
14+
- support math superscript characters and body transformer for footnotes [48934b4](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/48934b49a2363b49ae1d698ed4cb30fb79d7efe8)
1415

1516
## 8.11.0 (2026-01-07)
1617

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -843,8 +843,9 @@ require('render-markdown').setup({
843843
slack = { pattern = 'slack%.com', icon = '󰒱 ' },
844844
stackoverflow = { pattern = 'stackoverflow%.com', icon = '󰓌 ' },
845845
steam = { pattern = 'steampowered%.com', icon = '' },
846-
twitter = { pattern = 'x%.com', icon = '' },
846+
twitter = { pattern = 'twitter%.com', icon = '' },
847847
wikipedia = { pattern = 'wikipedia%.org', icon = '󰖬 ' },
848+
x = { pattern = 'x%.com', icon = '' },
848849
youtube = { pattern = 'youtube[^.]*%.com', icon = '󰗃 ' },
849850
youtube_short = { pattern = 'youtu%.be', icon = '󰗃 ' },
850851
},
@@ -1630,8 +1631,9 @@ require('render-markdown').setup({
16301631
slack = { pattern = 'slack%.com', icon = '󰒱 ' },
16311632
stackoverflow = { pattern = 'stackoverflow%.com', icon = '󰓌 ' },
16321633
steam = { pattern = 'steampowered%.com', icon = '' },
1633-
twitter = { pattern = 'x%.com', icon = '' },
1634+
twitter = { pattern = 'twitter%.com', icon = '' },
16341635
wikipedia = { pattern = 'wikipedia%.org', icon = '󰖬 ' },
1636+
x = { pattern = 'x%.com', icon = '' },
16351637
youtube = { pattern = 'youtube[^.]*%.com', icon = '󰗃 ' },
16361638
youtube_short = { pattern = 'youtu%.be', icon = '󰗃 ' },
16371639
},

doc/render-markdown.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*render-markdown.txt* For NVIM v0.11.6 Last change: 2026 January 29
1+
*render-markdown.txt* For NVIM v0.11.6 Last change: 2026 February 02
22

33
==============================================================================
44
Table of Contents *render-markdown-table-of-contents*
@@ -909,8 +909,9 @@ Default Configuration ~
909909
slack = { pattern = 'slack%.com', icon = '󰒱 ' },
910910
stackoverflow = { pattern = 'stackoverflow%.com', icon = '󰓌 ' },
911911
steam = { pattern = 'steampowered%.com', icon = ' ' },
912-
twitter = { pattern = 'x%.com', icon = ' ' },
912+
twitter = { pattern = 'twitter%.com', icon = ' ' },
913913
wikipedia = { pattern = 'wikipedia%.org', icon = '󰖬 ' },
914+
x = { pattern = 'x%.com', icon = ' ' },
914915
youtube = { pattern = 'youtube[^.]*%.com', icon = '󰗃 ' },
915916
youtube_short = { pattern = 'youtu%.be', icon = '󰗃 ' },
916917
},
@@ -1676,8 +1677,9 @@ Link Configuration ~
16761677
slack = { pattern = 'slack%.com', icon = '󰒱 ' },
16771678
stackoverflow = { pattern = 'stackoverflow%.com', icon = '󰓌 ' },
16781679
steam = { pattern = 'steampowered%.com', icon = ' ' },
1679-
twitter = { pattern = 'x%.com', icon = ' ' },
1680+
twitter = { pattern = 'twitter%.com', icon = ' ' },
16801681
wikipedia = { pattern = 'wikipedia%.org', icon = '󰖬 ' },
1682+
x = { pattern = 'x%.com', icon = ' ' },
16811683
youtube = { pattern = 'youtube[^.]*%.com', icon = '󰗃 ' },
16821684
youtube_short = { pattern = 'youtu%.be', icon = '󰗃 ' },
16831685
},

lua/render-markdown/health.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local state = require('render-markdown.state')
66
local M = {}
77

88
---@private
9-
M.version = '8.11.5'
9+
M.version = '8.11.6'
1010

1111
function M.check()
1212
M.start('versions')

lua/render-markdown/settings.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1338,8 +1338,9 @@ M.link.default = {
13381338
slack = { pattern = 'slack%.com', icon = '󰒱 ' },
13391339
stackoverflow = { pattern = 'stackoverflow%.com', icon = '󰓌 ' },
13401340
steam = { pattern = 'steampowered%.com', icon = '' },
1341-
twitter = { pattern = 'x%.com', icon = '' },
1341+
twitter = { pattern = 'twitter%.com', icon = '' },
13421342
wikipedia = { pattern = 'wikipedia%.org', icon = '󰖬 ' },
1343+
x = { pattern = 'x%.com', icon = '' },
13431344
youtube = { pattern = 'youtube[^.]*%.com', icon = '󰗃 ' },
13441345
youtube_short = { pattern = 'youtu%.be', icon = '󰗃 ' },
13451346
},

0 commit comments

Comments
 (0)