Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d2aa9780
Commit
d2aa9780
authored
Jun 18, 2013
by
Lars Magne Ingebrigtsen
Committed by
Katsumi Yamaoka
Jun 18, 2013
Browse files
lisp/gnus/shr.el: (shr-tag-dl, shr-tag-dt, shr-tag-dd): Add support for <dl>, <dt> and <dd>
parent
a020afb9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+2
-0
lisp/gnus/shr.el
lisp/gnus/shr.el
+15
-0
No files found.
lisp/gnus/ChangeLog
View file @
d2aa9780
...
...
@@ -3,6 +3,8 @@
* shr.el (shr-tag-table): Insert the images after the table, so that
they're not covered by the table colourisation, which often looked
awkward.
(shr-tag-dl, shr-tag-dt, shr-tag-dd): Add support for <dl>, <dt> and
<dd>.
2013-06-18 Katsumi Yamaoka <yamaoka@jpl.org>
...
...
lisp/gnus/shr.el
View file @
d2aa9780
...
...
@@ -1139,6 +1139,21 @@ ones, in case fg and bg are nil."
(
shr-generic
cont
))
(
shr-ensure-paragraph
))
(
defun
shr-tag-dl
(
cont
)
(
shr-ensure-paragraph
)
(
shr-generic
cont
)
(
shr-ensure-paragraph
))
(
defun
shr-tag-dt
(
cont
)
(
shr-ensure-newline
)
(
shr-generic
cont
)
(
shr-ensure-newline
))
(
defun
shr-tag-dd
(
cont
)
(
shr-ensure-newline
)
(
let
((
shr-indentation
(
+
shr-indentation
4
)))
(
shr-generic
cont
)))
(
defun
shr-tag-ul
(
cont
)
(
shr-ensure-paragraph
)
(
let
((
shr-list-mode
'ul
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment