Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 034f01c

Browse files
committed
[Docs] Fixes #58 - Check All Headers In Documentation
1 parent eed620c commit 034f01c

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

doc/book/zend.mvc.plugins.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ hasCurrentSuccessMessages()
200200
Additionally, the `FlashMessenger` implements both `IteratorAggregate` and `Countable`, allowing you
201201
to iterate over and count the flash messages in the current namespace within the session container.
202202

203-
**Examples**
203+
### Examples
204204

205205
```php
206206
public function processAction()
@@ -306,6 +306,7 @@ getAuthenticationService()
306306
> Retrieves the current authentication service instance if any is attached.
307307
rtype
308308
`Zend\Authentication\AuthenticationService`
309+
309310
## Layout Plugin
310311

311312
The `Layout` plugin allows for changing layout templates from within controller actions.
@@ -388,7 +389,7 @@ argument defaults to false.
388389

389390
When no arguments are provided, the current matched route is used.
390391

391-
**Example Usage**
392+
### Example Usage
392393

393394
```php
394395
// Pass in the route/url you want to redirect to after the POST
@@ -436,7 +437,7 @@ will default to the current matched route.
436437
treated as a URL instead of a route name (this is required when redirecting to a URL instead of a
437438
route). This argument defaults to false.
438439

439-
**Example Usage**
440+
### Example Usage
440441

441442
```php
442443
$myForm = new Zend\Form\Form('my-form');

doc/book/zend.mvc.routing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ The `Wildcard` route type matches all segments of a URI path, like in version 1
505505
Most of the routing definitions will be done in module configuration files, so the following
506506
examples will show how to set up routes in config files.
507507

508-
**Simple example with two literal routes**
508+
### Simple example with two literal routes
509509

510510
```php
511511
return array(
@@ -538,7 +538,7 @@ return array(
538538
);
539539
```
540540

541-
**A complex example with child routes**
541+
### A complex example with child routes
542542

543543
```php
544544
return array(
@@ -606,7 +606,7 @@ echo $this->url('blog/post', array('slug' => 'my-post')); // gives "/blog/my-pos
606606
echo $this->url('blog/rss'); // gives "/blog/rss"
607607
```
608608

609-
**An example with multiple Hostnames and subdomains within a single application**
609+
### An example with multiple Hostnames and subdomains within a single application
610610

611611
```php
612612
return array(

0 commit comments

Comments
 (0)