Skip to content

Commit

Permalink
fix(fast_break): html-attributes name can have the - char
Browse files Browse the repository at this point in the history
  • Loading branch information
hrsh7th committed May 28, 2023
1 parent 8480bc7 commit 02fe0f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/insx/recipe/fast_break/html_attrs.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local helper = require('insx.helper')

local ATTR_OPEN = [=[[[:alpha:]:]\+\%(=\)\?]=]
local ATTR_OPEN = [=[[[:alpha:]:-]\+\%(=\)\?]=]

---@param option {}
return function(option)
Expand Down

0 comments on commit 02fe0f3

Please sign in to comment.