|
4 | 4 | How to Create your Custom Encoder |
5 | 5 | ================================= |
6 | 6 |
|
7 | | -The:doc:`Serializer Component</components/serializer/index>` uses Normalizers |
| 7 | +The:doc:`Serializer Component</components/serializer>` uses Normalizers |
8 | 8 | to transform any data to an array that can be then converted in whatever |
9 | 9 | data-structured language you want thanks to Encoders. |
10 | 10 |
|
11 | 11 | The Component provides several built-in encoders that are described |
12 | | -:doc:`in their own section</components/serializer/encoders>` but you may want |
| 12 | +:doc:`in their own section</serializer/encoders>` but you may want |
13 | 13 | to use another language not supported. |
14 | 14 |
|
15 | 15 | Creating a new encoder |
16 | 16 | ---------------------- |
17 | 17 |
|
18 | 18 | Imagine you want to serialize and deserialize Yaml. For that you'll have to |
19 | 19 | create your own encoder that may use the |
20 | | -:doc:`Yaml Component</components/yaml/index>`:: |
| 20 | +:doc:`Yaml Component</components/yaml>`:: |
21 | 21 |
|
22 | 22 | namespace AppBundle\Encoder; |
23 | 23 |
|
|