From: martin.holst@gmail.com Date: Thu, 3 Oct 2013 12:34:28 +0000 (+0000) Subject: Added a utility which takes a mifare-dumpfile and creates a html-report visualising... X-Git-Tag: v1.0.0~66 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/61caacda2b2ca58474d32e0e187f2e9d61aa47e9 Added a utility which takes a mifare-dumpfile and creates a html-report visualising the data. The html-dump is self-sufficient and standalone .. part 2 --- diff --git a/client/lualibs/htmlskel.lua b/client/lualibs/htmlskel.lua new file mode 100644 index 00000000..377e62d9 --- /dev/null +++ b/client/lualibs/htmlskel.lua @@ -0,0 +1,155 @@ +local skel_1 = [[ + + + + + + + + + + +]] +local function getHTML(data) + return skel_1 .. data .. skel_2 +end + +return {getHTML = getHTML}