Skip to content

Commit d848edd

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: fix table markup
2 parents 205300d + de2812a commit d848edd

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

components/serializer.rst

+11-11
Original file line numberDiff line numberDiff line change
@@ -888,27 +888,27 @@ which defines the configuration options for the CsvEncoder an associative array:
888888

889889
These are the options available:
890890

891-
======================= ==================================================== ==========================
892-
Option Description Default
893-
======================= ==================================================== ==========================
894-
``csv_delimiter`` Sets the field delimiter separating values (one ``,``
891+
======================= ===================================================== ==========================
892+
Option Description Default
893+
======================= ===================================================== ==========================
894+
``csv_delimiter`` Sets the field delimiter separating values (one ``,``
895895
character only)
896-
``csv_enclosure`` Sets the field enclosure (one character only) ``"``
896+
``csv_enclosure`` Sets the field enclosure (one character only) ``"``
897897
``csv_escape_char`` Sets the escape character (at most one character)
898-
``csv_key_separator`` Sets the separator for array's keys during its ``.``
898+
``csv_key_separator`` Sets the separator for array's keys during its ``.``
899899
flattening
900900
``csv_headers`` Sets the order of the header and data columns
901901
E.g.: if ``$data = ['c' => 3, 'a' => 1, 'b' => 2]``
902902
and ``$options = ['csv_headers' => ['a', 'b', 'c']]``
903903
then ``serialize($data, 'csv', $options)`` returns
904-
``a,b,c\n1,2,3 `` ``[]``, inferred from input data's keys
905-
``csv_escape_formulas`` Escapes fields containg formulas by prepending them ``false``
904+
``a,b,c\n1,2,3`` ``[]``, inferred from input data's keys
905+
``csv_escape_formulas`` Escapes fields containg formulas by prepending them ``false``
906906
with a ``\t`` character
907907
``as_collection`` Always returns results as a collection, even if only
908908
one line is decoded.
909-
``no_headers`` Disables header in the encoded CSV ``false``
910-
``output_utf8_bom`` Outputs special `UTF-8 BOM`_ along with encoded data ``false``
911-
======================= ==================================================== ==========================
909+
``no_headers`` Disables header in the encoded CSV ``false``
910+
``output_utf8_bom`` Outputs special `UTF-8 BOM`_ along with encoded data ``false``
911+
======================= ===================================================== ==========================
912912

913913
The ``XmlEncoder``
914914
~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)