From 5dea96ad915692e9abbc0620930756c51c256179 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Thu, 27 Feb 2025 23:23:57 +0000 Subject: restructure, refactor, a bit --- xmpp/xml.lua | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'xmpp/xml.lua') diff --git a/xmpp/xml.lua b/xmpp/xml.lua index 68fa741..e54f27f 100644 --- a/xmpp/xml.lua +++ b/xmpp/xml.lua @@ -1,21 +1,20 @@ -- originally from http://lua-users.org/wiki/LuaXml -- modified by me a bit - -entity_escapes = { +local entity_escapes = { ["<"]="<", [">"]=">", ["&"]="&", ['"']=""", ["'"]="'" } -entity_unescapes = {} +local entity_unescapes = {} for k,v in pairs(entity_escapes) do entity_unescapes[v]=k end -function escape(s) +local function escape(s) return s:gsub("[<>&'\"]",entity_escapes) end -function unescape(s) +local function unescape(s) return s:gsub("&[a-z]+;",entity_unescapes) end -- cgit v1.2.3