From ab75f8c370d2bce105a0941bd71ba7681c962370 Mon Sep 17 00:00:00 2001 From: vhyrro Date: Mon, 27 Nov 2023 19:01:58 +0000 Subject: [PATCH] chore: autoformat with stylua --- lua/neorg/modules/core/concealer/module.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/neorg/modules/core/concealer/module.lua b/lua/neorg/modules/core/concealer/module.lua index b0d264fb6..04997f3f9 100644 --- a/lua/neorg/modules/core/concealer/module.lua +++ b/lua/neorg/modules/core/concealer/module.lua @@ -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()