You are browsing a version that has not yet been released.

Formats

In addition to templates and themes, you can build formats which allow you to completely implement your own rendering. This library comes with two formats by default, HTML and LaTeX.

To build your own format you need to implement the Doctrine\RST\Formats\Format interface:

1namespace App\RST\MySpecial; use App\MySpecial\MySpecialGenerator; use Doctrine\RST\Directives\Directive; use Doctrine\RST\Formats\Format; use Doctrine\RST\Nodes; use Doctrine\RST\Renderers\CallableNodeRendererFactory; use Doctrine\RST\Renderers\NodeRendererFactory; class MySpecialFormat implements Format { /** @var MySpecialGenerator */ private $mySpecialGenerator; public function __construct(MySpecialGenerator $mySpecialGenerator) { $this->mySpecialGenerator = $mySpecialGenerator; } public function getFileExtension() : string { return 'myspecial'; } /** * @return Directive[] */ public function getDirectives() : array { return [ // ... ]; } /** * @return NodeRendererFactory[] */ public function getNodeRendererFactories() : array { return [ Nodes\AnchorNode::class => new CallableNodeRendererFactory( function (Nodes\AnchorNode $node) { return new MySpecial\Renderers\AnchorNodeRenderer( $node, $this->mySpecialGenerator ); } ), // implement the NodeRendererFactory interface for every node type ]; } }
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

The App\RST\MySpecial\Renderers\AnchorNodeRenderer would look like this:

1namespace App\RST\MySpecial\Renderers; use App\MySpecial\MySpecialGenerator; use Doctrine\RST\Nodes\AnchorNode; use Doctrine\RST\Renderers\NodeRenderer; class AnchorNodeRenderer implements NodeRenderer { /** @var AnchorNode */ private $anchorNode; /** @var MySpecialGenerator */ private $mySpecialGenerator; public function __construct(AnchorNode $anchorNode, MySpecialGenerator $mySpecialGenerator) { $this->anchorNode = $anchorNode; $this->mySpecialGenerator = $mySpecialGenerator; } public function render() : string { // render the node using the MySpecialGenerator instance } }
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

Now add the format to the Configuration:

1use App\MySpecial\MySpecialGenerator; use App\RST\MySpecial\MySpecialFormat; $configuration->addFormat(new MySpecialFormat(new MySpecialGenerator()));
2
3
4

Use the format:

1$configuration->setFileExtension('myspecial');