diff --git a/doc/book/zend.view.helpers.advanced-usage.md b/doc/book/zend.view.helpers.advanced-usage.md
index 83eca33a..f3843b72 100644
--- a/doc/book/zend.view.helpers.advanced-usage.md
+++ b/doc/book/zend.view.helpers.advanced-usage.md
@@ -146,7 +146,7 @@ echo $this->specialPurpose();
The output would look something like this:
-```php
+```html
I have seen 'The Jerk' 1 time(s).
I have seen 'The Jerk' 2 time(s).
I have seen 'The Jerk' 3 time(s).
diff --git a/doc/book/zend.view.helpers.cycle.md b/doc/book/zend.view.helpers.cycle.md
index afaaa461..f7cb2528 100644
--- a/doc/book/zend.view.helpers.cycle.md
+++ b/doc/book/zend.view.helpers.cycle.md
@@ -21,7 +21,7 @@ To add elements to cycle just specify them in constructor:
The output:
-```php
+```html
First
@@ -48,7 +48,7 @@ Or use `assign(array $data)` method and moving in backwards order:
The output:
-```php
+```html
First
diff --git a/doc/book/zend.view.helpers.flash-messenger.md b/doc/book/zend.view.helpers.flash-messenger.md
index 261df455..8ceacd2a 100644
--- a/doc/book/zend.view.helpers.flash-messenger.md
+++ b/doc/book/zend.view.helpers.flash-messenger.md
@@ -41,7 +41,7 @@ echo $this->flashMessenger()->render('error', array('alert', 'alert-danger'));
The output of this example, using the default `HTML` rendering settings, would look like this:
-```php
+```html
Some FlashMessenger Content
You, the developer, are AWESOME!
@@ -79,7 +79,7 @@ echo $this->flashMessenger()
The above code sample then would then generate the following output:
-```php
+```html
Some FlashMessenger Content
You, who's reading the docs, are AWESOME!
@@ -114,7 +114,7 @@ markup. The example only covers one type of `FlashMessenger` output; if you woul
`FlashMessages` available in each of the rendered `namespaces`, then you would receive the same
output multiple times only having different `CSS` classes applied.
-```php
+```html
diff --git a/doc/book/zend.view.helpers.head-link.md b/doc/book/zend.view.helpers.head-link.md
index 09f629bf..4a27e997 100644
--- a/doc/book/zend.view.helpers.head-link.md
+++ b/doc/book/zend.view.helpers.head-link.md
@@ -58,7 +58,7 @@ echo $this->headLink();
Output:
-```php
+```html
diff --git a/doc/book/zend.view.helpers.head-meta.md b/doc/book/zend.view.helpers.head-meta.md
index 3d36bb28..3fac4d22 100644
--- a/doc/book/zend.view.helpers.head-meta.md
+++ b/doc/book/zend.view.helpers.head-meta.md
@@ -114,8 +114,11 @@ $this->doctype(Zend\View\Helper\Doctype::XHTML1_RDFA);
$this->headMeta()->setProperty('og:title', 'my article title');
$this->headMeta()->setProperty('og:type', 'article');
echo $this->headMeta();
-
-// output is:
-//
-//
```
+
+Output:
+
+```html
+
+
+```
\ No newline at end of file
diff --git a/doc/book/zend.view.helpers.head-title.md b/doc/book/zend.view.helpers.head-title.md
index 2391ef01..78d803a2 100644
--- a/doc/book/zend.view.helpers.head-title.md
+++ b/doc/book/zend.view.helpers.head-title.md
@@ -80,7 +80,7 @@ When you're finally ready to render the title in your layout script, simply echo
Output:
-```php
+```html
action - controller - module - Zend Framework
```
@@ -93,6 +93,6 @@ method:
Output:
-```php
+```html
action - controller - module - Zend Framework
```
diff --git a/doc/book/zend.view.helpers.html-list.md b/doc/book/zend.view.helpers.html-list.md
index 1bdfe957..92e54162 100644
--- a/doc/book/zend.view.helpers.html-list.md
+++ b/doc/book/zend.view.helpers.html-list.md
@@ -30,7 +30,7 @@ echo $this->htmlList($items);
Output:
-```php
+```html
diff --git a/doc/book/zend.view.helpers.html-object.md b/doc/book/zend.view.helpers.html-object.md
index ca316468..1d665077 100644
--- a/doc/book/zend.view.helpers.html-object.md
+++ b/doc/book/zend.view.helpers.html-object.md
@@ -26,7 +26,7 @@ is the resource *URI*.
This outputs the following *HTML*:
-```php
+```html