diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-01-22 16:32:46 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-01-22 16:32:46 +0000 |
commit | dbbb88812817d58aa7dd53633f9d81a1a1fa6565 (patch) | |
tree | d598c632218a757c5f087a2dd86dd4c647404c20 /app/debug-html.lsp | |
parent | 52525eed79994b294af9cf905f6574fc75955369 (diff) | |
download | acf-core-dbbb88812817d58aa7dd53633f9d81a1a1fa6565.tar.bz2 acf-core-dbbb88812817d58aa7dd53633f9d81a1a1fa6565.tar.xz |
Modify HTML to replace DL,DT,DD with divs. Also cleanup other HTML.
Diffstat (limited to 'app/debug-html.lsp')
-rw-r--r-- | app/debug-html.lsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/debug-html.lsp b/app/debug-html.lsp index f857b4f..bf593f7 100644 --- a/app/debug-html.lsp +++ b/app/debug-html.lsp @@ -1,9 +1,9 @@ <% local data, viewlibrary, page_info, session = ... %> <% htmlviewfunctions = require("htmlviewfunctions") %> -<H1>Debugging</H1> -<H2>View Data:</H2> +<h1>Debugging</h1> +<h2>View Data:</h2> <%= htmlviewfunctions.cfe_unpack(data) %> -<H2>Session:</H2> +<h2>Session:</h2> <%= htmlviewfunctions.cfe_unpack(session) %> -<H2>Page Info:</H2> +<h2>Page Info:</h2> <%= htmlviewfunctions.cfe_unpack(page_info) %> |