Add element-content as a prereq to matching on an element's textual content
Annotate for file /package.lisp
2009-11-21 pix 1 (defpackage #:oh-ducks.functional
16:12:13 ' 2 (:import-from #:alexandria . #1=(
' 3 #:compose
' 4 #:curry
2009-11-23 pix 5 #:rcurry
13:02:12 ' 6 #:when-let*))
2009-11-21 pix 7 (:export . #1#))
16:12:13 ' 8
2009-11-18 pix 9 (defpackage #:oh-ducks.traversal
2009-11-21 pix 10 (:use #:cl #:oh-ducks.functional)
2009-11-18 pix 11 (:export #:element-children
10:23:05 ' 12 #:element-parent
' 13 #:element-attribute
' 14 #:element-type
2009-12-13 pix 15 #:element-content
2009-11-18 pix 16
10:23:05 ' 17 #:element-id
' 18 #:element-classes
' 19 #:element-type-equal
' 20 #:element-ancestors))
' 21
2009-11-18 pix 22 (defpackage #:oh-ducks
2009-11-21 pix 23 (:use #:cl #:unify #:oh-ducks.functional #:oh-ducks.traversal)
2009-11-18 pix 24 (:export ;; template machinery
10:23:05 ' 25 #:*default-parser*
' 26 #:html
' 27 ))