Skip to content

Commit

Permalink
chore: autoformat with stylua
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro authored and github-actions[bot] committed Nov 27, 2023
1 parent 2a6fc9c commit ab75f8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/neorg/modules/core/concealer/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@ module.public = {
if config.numeric_superscript and link_title:match("%d+") then
local t = {}
for i = 1, #link_title do
local d = link_title:sub(i,i):byte() - 0x30
table.insert(t, superscript_digits[d+1])
local d = link_title:sub(i, i):byte() - 0x30
table.insert(t, superscript_digits[d + 1])
end
local superscripted_title = table.concat(t)
local row_start_0b, col_start_0b, row_end_0bin, col_end_0bex = link_title_node:range()
Expand Down

0 comments on commit ab75f8c

Please sign in to comment.