diff options
author | Taylor R Campbell <campbell@mumble.net> | 2013-07-09 15:11:39 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@mumble.net> | 2013-07-09 15:11:39 +0000 |
commit | 8b3853883c66910e6a2564a0774cdb5b61481997 (patch) | |
tree | d6e0fbbf6e97277546ce89fb4552d69783be0516 | |
parent | 66d637451e2fa063b5c5e8f26f5df020f1bceb76 (diff) |
A little more HTML tweaking. Not perfect, but enough for the day.
-rw-r--r-- | paredit.el | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -549,20 +549,22 @@ Paredit behaves badly if parentheses are unbalanced, so exercise keys ", "))) (funcall insert-lines "<tr>") - (funcall insert-lines (concat " <th>" name "</th>")) - (funcall insert-lines (concat " <th>" keys "</th>")) + (funcall insert-lines (concat " <th align=\"left\">" keys "</th>")) + (funcall insert-lines (concat " <th align=\"left\">" name "</th>")) (funcall insert-lines "</tr>") (funcall insert-lines - "<tr><td colspan=\"2\"><table cellpadding=\"10\">") + "<tr><td colspan=\"2\"><table cellpadding=\"5\"><tr>") (dolist (example examples) - (let ((prefix "<tr><td><pre>") + (let ((prefix "<td><table border=\"1\"><tr><td><table><tr><td><pre>") (examples (mapconcat 'paredit-html-quote example - (concat "</pre></td><td>→</td><td><pre>"))) - (suffix "</pre></td></tr>")) + (concat "</pre></td></tr>" + "<tr><th>↓</th></tr>" + "<tr><td><pre>"))) + (suffix "</pre></td></tr></table></td></tr></table></td>")) (funcall insert-lines (concat prefix examples suffix)))) - (funcall insert-lines "</table></td></tr>"))) + (funcall insert-lines "</tr></table></td></tr>"))) (funcall insert-lines "</table>"))) (defun paredit-html-quote (string) |