--[[
Mitchell's html.lua
Copyright (c) 2006-2008 Mitchell Foral. All rights reserved.
SciTE-tools homepage: http://caladbolg.net/scite.php
Send email to: mitchellcaladbolgnet
Permission to use, copy, modify, and distribute this file
is granted, provided credit is given to Mitchell.
]]--
---
-- The html module.
-- It provides utilities for editing HTML.
module('modules.html', package.seeall)
if type(_G.snippets) == 'table' then
---
-- Container for HTML-specific snippets.
-- @class table
-- @name snippets.html
_G.snippets[SCLEX_HTML] = {}
end
if type(_G.keys) == 'table' then
---
-- Container for HTML-specific key commands.
-- @class table
-- @name keys.html
_G.keys[SCLEX_HTML] = {}
end
require 'html/snippets'
require 'html/commands'