Liking cljdoc? Tell your friends :D

reagent-hickory.hickory.core


Attributecljs

source

Commentcljs

source

Documentcljs

source

DocumentTypecljs

source

Elementcljs

source

extend-type-with-seqablecljs

(extend-type-with-seqable t)
source

extract-doctypecljs

(extract-doctype s)
source

format-doctypecljs

(format-doctype dt)
source

HiccupRepresentablecljsprotocol

Objects that can be represented as Hiccup nodes implement this protocol in order to make the conversion.

Objects that can be represented as Hiccup nodes implement this protocol in
order to make the conversion.

as-hiccupcljs

(as-hiccup this)

Converts the node given into a hiccup-format data structure. The node must have an implementation of the HiccupRepresentable protocol; nodes created by parse or parse-fragment already do.

Converts the node given into a hiccup-format data structure. The
node must have an implementation of the HiccupRepresentable
protocol; nodes created by parse or parse-fragment already do.
sourceraw docstring

HickoryRepresentablecljsprotocol

Objects that can be represented as HTML DOM node maps, similar to clojure.xml, implement this protocol to make the conversion.

Each DOM node will be a map or string (for Text/CDATASections). Nodes that are maps have the appropriate subset of the keys

:type - [:comment, :document, :document-type, :element] :tag - node's tag, check :type to see if applicable :attrs - node's attributes as a map, check :type to see if applicable :content - node's child nodes, in a vector, check :type to see if applicable

Objects that can be represented as HTML DOM node maps, similar to
clojure.xml, implement this protocol to make the conversion.

Each DOM node will be a map or string (for Text/CDATASections). Nodes that
are maps have the appropriate subset of the keys

  :type     - [:comment, :document, :document-type, :element]
  :tag      - node's tag, check :type to see if applicable
  :attrs    - node's attributes as a map, check :type to see if applicable
  :content  - node's child nodes, in a vector, check :type to see if
              applicable

as-hickorycljs

(as-hickory this)

Converts the node given into a hickory-format data structure. The node must have an implementation of the HickoryRepresentable protocol; nodes created by parse or parse-fragment already do.

Converts the node given into a hickory-format data structure. The
node must have an implementation of the HickoryRepresentable protocol;
nodes created by parse or parse-fragment already do.
sourceraw docstring

node-typecljs

(node-type type)
source

parsecljs

(parse s)

Parse an entire HTML document into a DOM structure that can be used as input to as-hiccup or as-hickory.

  (-> (parse "<a style=\"visibility:hidden\">foo</a><div style=\"color:green\"><p>Hello</p></div>")
    as-hiccup)
  (-> (parse "<a style=\"visibility:hidden\">foo</a><div style=\"color:green\"><p>Hello</p></div>")
    as-hickory)
Parse an entire HTML document into a DOM structure that can be
   used as input to as-hiccup or as-hickory.

```klipse
  (-> (parse "<a style=\"visibility:hidden\">foo</a><div style=\"color:green\"><p>Hello</p></div>")
    as-hiccup)
```

```klipse
  (-> (parse "<a style=\"visibility:hidden\">foo</a><div style=\"color:green\"><p>Hello</p></div>")
    as-hickory)
```


  
sourceraw docstring

parse-dom-with-domparsercljs

(parse-dom-with-domparser s)
source

parse-dom-with-writecljs

(parse-dom-with-write s)

Parse an HTML document (or fragment) as a DOM using document.implementation.createHTMLDocument and document.write.

Parse an HTML document (or fragment) as a DOM using document.implementation.createHTMLDocument and document.write.
sourceraw docstring

parse-fragmentcljs

(parse-fragment s)

Parse an HTML fragment (some group of tags that might be at home somewhere in the tag hierarchy under <body>) into a list of DOM elements that can each be passed as input to as-hiccup or as-hickory.

Parse an HTML fragment (some group of tags that might be at home somewhere
in the tag hierarchy under <body>) into a list of DOM elements that can
each be passed as input to as-hiccup or as-hickory.
sourceraw docstring

remove-elcljs

(remove-el el)
source

Textcljs

source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close