removed xml configs from doc and code

This commit is contained in:
Austin Marino 2019-10-15 14:16:23 -07:00
parent d86e31d370
commit 7f6630c006
2 changed files with 2 additions and 15 deletions

View file

@ -65,10 +65,7 @@ class ExportPlugin(BeetsPlugin):
},
'xml': {
# XML module formatting options.
'formatting': {
# Can be either "xml", "html" or "text" (default is "xml").
'method': 'xml'
}
'formatting': {}
}
# TODO: Use something like the edit plugin
# 'item_fields': []

View file

@ -69,13 +69,6 @@ These options match the options from the `Python csv module`_.
.. _Python csv module: https://docs.python.org/3/library/csv.html#csv-fmt-params
- **XML Formatting**
- **method**: Can be either "xml", "html" or "text" (default is "xml")
These options match the options from the `Python xml module`_.
.. _Python xml module: https://docs.python.org/3/library/xml.etree.elementtree.html#xml.etree.ElementTree.tostring
The default options look like this::
export:
@ -88,7 +81,4 @@ The default options look like this::
csv:
formatting:
delimiter: ','
dialect: 'excel'
xml:
formatting:
method: 'xml'
dialect: 'excel'