Skip to content

Commit d585762

Browse files
committed
minor #14815 fix table markup (xabbuh)
This PR was merged into the 4.4 branch. Discussion ---------- fix table markup Commits ------- 7bf5be1 fix table markup
2 parents d1cb722 + 7bf5be1 commit d585762

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

components/serializer.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -833,27 +833,27 @@ which defines the configuration options for the CsvEncoder an associative array:
833833

834834
These are the options available:
835835

836-
======================= ==================================================== ==========================
837-
Option Description Default
838-
======================= ==================================================== ==========================
839-
``csv_delimiter`` Sets the field delimiter separating values (one ``,``
836+
======================= ===================================================== ==========================
837+
Option Description Default
838+
======================= ===================================================== ==========================
839+
``csv_delimiter`` Sets the field delimiter separating values (one ``,``
840840
character only)
841-
``csv_enclosure`` Sets the field enclosure (one character only) ``"``
841+
``csv_enclosure`` Sets the field enclosure (one character only) ``"``
842842
``csv_escape_char`` Sets the escape character (at most one character)
843-
``csv_key_separator`` Sets the separator for array's keys during its ``.``
843+
``csv_key_separator`` Sets the separator for array's keys during its ``.``
844844
flattening
845845
``csv_headers`` Sets the order of the header and data columns
846846
E.g.: if ``$data = ['c' => 3, 'a' => 1, 'b' => 2]``
847847
and ``$options = ['csv_headers' => ['a', 'b', 'c']]``
848848
then ``serialize($data, 'csv', $options)`` returns
849-
``a,b,c\n1,2,3 `` ``[]``, inferred from input data's keys
850-
``csv_escape_formulas`` Escapes fields containg formulas by prepending them ``false``
849+
``a,b,c\n1,2,3`` ``[]``, inferred from input data's keys
850+
``csv_escape_formulas`` Escapes fields containg formulas by prepending them ``false``
851851
with a ``\t`` character
852852
``as_collection`` Always returns results as a collection, even if only
853853
one line is decoded.
854-
``no_headers`` Disables header in the encoded CSV ``false``
855-
``output_utf8_bom`` Outputs special `UTF-8 BOM`_ along with encoded data ``false``
856-
======================= ==================================================== ==========================
854+
``no_headers`` Disables header in the encoded CSV ``false``
855+
``output_utf8_bom`` Outputs special `UTF-8 BOM`_ along with encoded data ``false``
856+
======================= ===================================================== ==========================
857857

858858
.. versionadded:: 4.4
859859

0 commit comments

Comments
 (0)