diff --git a/docs/markdown/ivopetkov.html5domdocument.class.md b/docs/markdown/ivopetkov.html5domdocument.class.md
index f4aeff0..d27a6ca 100644
--- a/docs/markdown/ivopetkov.html5domdocument.class.md
+++ b/docs/markdown/ivopetkov.html5domdocument.class.md
@@ -15,14 +15,14 @@ IvoPetkov\HTML5DOMDocument extends DOMDocument {
/* Methods */
public __construct ( [ string $version [, string $encoding ]] )
- public DOMElement createInsertTarget ( string $name )
+ public HTML5DOMElement createInsertTarget ( string $name )
public void insertHTML ( string $source [, string $target = 'beforeBodyEnd' ] )
public void insertHTMLMulti ( array $sources )
public bool loadHTML ( string $source [, int $options = 0 ] )
public void loadHTMLFile ( string $filename [, int $options = 0 ] )
public void modify ( [ int $modifications = 0 ] )
- public DOMElement|null querySelector ( string $selector )
- public DOMNodeList querySelectorAll ( string $selector )
+ public HTML5DOMElement|null querySelector ( string $selector )
+ public HTML5DOMNodeList querySelectorAll ( string $selector )
public string saveHTML ( [ DOMNode $node ] )
public int saveHTMLFile ( string $filename )
@@ -65,7 +65,7 @@ IvoPetkov\HTML5DOMDocument extends DOMDocument {
Creates a new HTML5DOMDocument object.
-##### public [DOMElement](http://php.net/manual/en/class.domelement.php) [createInsertTarget](ivopetkov.html5domdocument.createinserttarget.method.md) ( string $name )
+##### public HTML5DOMElement [createInsertTarget](ivopetkov.html5domdocument.createinserttarget.method.md) ( string $name )
Creates an element that will be replaced by the new body in insertHTML.
@@ -89,11 +89,11 @@ IvoPetkov\HTML5DOMDocument extends DOMDocument {
Applies the modifications specified to the DOM document.
-##### public [DOMElement](http://php.net/manual/en/class.domelement.php)|null [querySelector](ivopetkov.html5domdocument.queryselector.method.md) ( string $selector )
+##### public HTML5DOMElement|null [querySelector](ivopetkov.html5domdocument.queryselector.method.md) ( string $selector )
Returns the first document element matching the selector.
-##### public [DOMNodeList](http://php.net/manual/en/class.domnodelist.php) [querySelectorAll](ivopetkov.html5domdocument.queryselectorall.method.md) ( string $selector )
+##### public HTML5DOMNodeList [querySelectorAll](ivopetkov.html5domdocument.queryselectorall.method.md) ( string $selector )
Returns a list of document elements matching the selector.
diff --git a/docs/markdown/ivopetkov.html5domdocument.createinserttarget.method.md b/docs/markdown/ivopetkov.html5domdocument.createinserttarget.method.md
index 5bcf779..19012c1 100644
--- a/docs/markdown/ivopetkov.html5domdocument.createinserttarget.method.md
+++ b/docs/markdown/ivopetkov.html5domdocument.createinserttarget.method.md
@@ -3,7 +3,7 @@
Creates an element that will be replaced by the new body in insertHTML.
```php
-public DOMElement createInsertTarget ( string $name )
+public HTML5DOMElement createInsertTarget ( string $name )
```
## Parameters
diff --git a/docs/markdown/ivopetkov.html5domdocument.queryselector.method.md b/docs/markdown/ivopetkov.html5domdocument.queryselector.method.md
index a8576ef..c35fa23 100644
--- a/docs/markdown/ivopetkov.html5domdocument.queryselector.method.md
+++ b/docs/markdown/ivopetkov.html5domdocument.queryselector.method.md
@@ -3,7 +3,7 @@
Returns the first document element matching the selector.
```php
-public DOMElement|null querySelector ( string $selector )
+public HTML5DOMElement|null querySelector ( string $selector )
```
## Parameters
diff --git a/docs/markdown/ivopetkov.html5domdocument.queryselectorall.method.md b/docs/markdown/ivopetkov.html5domdocument.queryselectorall.method.md
index 8d6073c..4869493 100644
--- a/docs/markdown/ivopetkov.html5domdocument.queryselectorall.method.md
+++ b/docs/markdown/ivopetkov.html5domdocument.queryselectorall.method.md
@@ -3,7 +3,7 @@
Returns a list of document elements matching the selector.
```php
-public DOMNodeList querySelectorAll ( string $selector )
+public HTML5DOMNodeList querySelectorAll ( string $selector )
```
## Parameters
diff --git a/docs/markdown/ivopetkov.html5domelement.class.md b/docs/markdown/ivopetkov.html5domelement.class.md
index 57e9f8f..75c90ad 100644
--- a/docs/markdown/ivopetkov.html5domelement.class.md
+++ b/docs/markdown/ivopetkov.html5domelement.class.md
@@ -13,8 +13,10 @@ IvoPetkov\HTML5DOMElement extends DOMElement {
/* Methods */
public string getAttribute ( string $name )
public array getAttributes ( void )
- public DOMElement|null querySelector ( string $selector )
- public DOMNodeList querySelectorAll ( string $selector )
+ public string getNodeValue ( void )
+ public string getTextContent ( void )
+ public HTML5DOMElement|null querySelector ( string $selector )
+ public HTML5DOMNodeList querySelectorAll ( string $selector )
}
```
@@ -47,11 +49,19 @@ IvoPetkov\HTML5DOMElement extends DOMElement {
Returns an array containing all attributes.
-##### public [DOMElement](http://php.net/manual/en/class.domelement.php)|null [querySelector](ivopetkov.html5domelement.queryselector.method.md) ( string $selector )
+##### public string [getNodeValue](ivopetkov.html5domelement.getnodevalue.method.md) ( void )
+
+ Returns the updated nodeValue Property
+
+##### public string [getTextContent](ivopetkov.html5domelement.gettextcontent.method.md) ( void )
+
+ Returns the updated $textContent Property
+
+##### public HTML5DOMElement|null [querySelector](ivopetkov.html5domelement.queryselector.method.md) ( string $selector )
Returns the first child element matching the selector.
-##### public [DOMNodeList](http://php.net/manual/en/class.domnodelist.php) [querySelectorAll](ivopetkov.html5domelement.queryselectorall.method.md) ( string $selector )
+##### public HTML5DOMNodeList [querySelectorAll](ivopetkov.html5domelement.queryselectorall.method.md) ( string $selector )
Returns a list of children elements matching the selector.
diff --git a/docs/markdown/ivopetkov.html5domelement.getnodevalue.method.md b/docs/markdown/ivopetkov.html5domelement.getnodevalue.method.md
new file mode 100644
index 0000000..c480b2d
--- /dev/null
+++ b/docs/markdown/ivopetkov.html5domelement.getnodevalue.method.md
@@ -0,0 +1,22 @@
+# IvoPetkov\HTML5DOMElement::getNodeValue
+
+Returns the updated nodeValue Property
+
+```php
+public string getNodeValue ( void )
+```
+
+## Returns
+
+ The updated $nodeValue
+
+## Details
+
+Class: [IvoPetkov\HTML5DOMElement](ivopetkov.html5domelement.class.md)
+
+Location: ~/src/HTML5DOMElement.php
+
+---
+
+[back to index](index.md)
+
diff --git a/docs/markdown/ivopetkov.html5domelement.gettextcontent.method.md b/docs/markdown/ivopetkov.html5domelement.gettextcontent.method.md
new file mode 100644
index 0000000..811b8c2
--- /dev/null
+++ b/docs/markdown/ivopetkov.html5domelement.gettextcontent.method.md
@@ -0,0 +1,22 @@
+# IvoPetkov\HTML5DOMElement::getTextContent
+
+Returns the updated $textContent Property
+
+```php
+public string getTextContent ( void )
+```
+
+## Returns
+
+ The updated $textContent
+
+## Details
+
+Class: [IvoPetkov\HTML5DOMElement](ivopetkov.html5domelement.class.md)
+
+Location: ~/src/HTML5DOMElement.php
+
+---
+
+[back to index](index.md)
+
diff --git a/docs/markdown/ivopetkov.html5domelement.queryselector.method.md b/docs/markdown/ivopetkov.html5domelement.queryselector.method.md
index 5c00cbe..ee276b8 100644
--- a/docs/markdown/ivopetkov.html5domelement.queryselector.method.md
+++ b/docs/markdown/ivopetkov.html5domelement.queryselector.method.md
@@ -3,7 +3,7 @@
Returns the first child element matching the selector.
```php
-public DOMElement|null querySelector ( string $selector )
+public HTML5DOMElement|null querySelector ( string $selector )
```
## Parameters
diff --git a/docs/markdown/ivopetkov.html5domelement.queryselectorall.method.md b/docs/markdown/ivopetkov.html5domelement.queryselectorall.method.md
index 3a7455d..a9f5436 100644
--- a/docs/markdown/ivopetkov.html5domelement.queryselectorall.method.md
+++ b/docs/markdown/ivopetkov.html5domelement.queryselectorall.method.md
@@ -3,7 +3,7 @@
Returns a list of children elements matching the selector.
```php
-public DOMNodeList querySelectorAll ( string $selector )
+public HTML5DOMNodeList querySelectorAll ( string $selector )
```
## Parameters