aboutsummaryrefslogtreecommitdiff
path: root/hnreader.el
diff options
context:
space:
mode:
authorGia Thanh Vuong <thanhvg@gmail.com>2019-08-29 15:05:41 -0600
committerGia Thanh Vuong <thanhvg@gmail.com>2019-08-29 15:05:41 -0600
commita085abf870d630f50e2fc0b76ee90695481e8fb4 (patch)
treef8db275252cd93860cfbb91caabf33a49ebaa4b4 /hnreader.el
parent1817c5a3e7ac90483ea289d5c2aed1b4c04979f2 (diff)
render cut off links
Diffstat (limited to 'hnreader.el')
-rw-r--r--hnreader.el18
1 files changed, 17 insertions, 1 deletions
diff --git a/hnreader.el b/hnreader.el
index 08bc33a..d5190e8 100644
--- a/hnreader.el
+++ b/hnreader.el
@@ -286,9 +286,25 @@ third one is 80.")
"Return user who wrote this COMMENT-DOM."
(dom-text (dom-by-class comment-dom "^hnuser$")))
+(defun hnreader--it-to-it (it)
+ "Map node to node.
+IT is an element in the DOM tree. Map to different IT when it is
+a, img or pre. Othewise just copy"
+ (cond
+ ((and (listp it)
+ (listp (cdr it))) ;; check for list but not cons
+ (cond
+ ((and (equal (car it) 'a)
+ (not (dom-by-tag it 'img))) ;; bail out if img
+ ;; (dom-attr it 'href)
+ `(span nil ,(dom-attr it 'href)))
+ (t (mapcar #'hnreader--it-to-it it))))
+ (t it)))
+
(defun hnreader--get-comment (comment-dom)
"Get comment dom from COMMENT-DOM."
- (dom-by-class comment-dom "^commtext"))
+ ;; (dom-by-class comment-dom "^commtext"))
+ (hnreader--it-to-it (dom-by-class comment-dom "^commtext")))
(defun hnreader-readpage-promise (url)
"Promise HN URL."