keep beginning
This commit is contained in:
parent
3a11b53b1f
commit
0c17ea0a9a
2 changed files with 28 additions and 2 deletions
|
|
@ -8,7 +8,20 @@
|
|||
|
||||
Configuration File
|
||||
==================
|
||||
Something
|
||||
ytdl-sub is configured using a ``config.yaml`` file.
|
||||
|
||||
The ``config.yaml`` is made up of two sections:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
configuration:
|
||||
presets:
|
||||
|
||||
|
||||
Note for Windows users, paths can be represented with ``C:/forward/slashes/like/linux``.
|
||||
If you prefer to use a Windows backslash, note that it must have
|
||||
``C:\double\bashslash\paths`` in order to escape the backslash character. This is due to
|
||||
it being a YAML escape character.
|
||||
|
||||
dl_aliases
|
||||
----------
|
||||
|
|
|
|||
|
|
@ -113,7 +113,20 @@ class PersistLogsValidator(StrictDictValidator):
|
|||
|
||||
class ConfigOptions(StrictDictValidator):
|
||||
"""
|
||||
Something
|
||||
ytdl-sub is configured using a ``config.yaml`` file.
|
||||
|
||||
The ``config.yaml`` is made up of two sections:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
configuration:
|
||||
presets:
|
||||
|
||||
|
||||
Note for Windows users, paths can be represented with ``C:/forward/slashes/like/linux``.
|
||||
If you prefer to use a Windows backslash, note that it must have
|
||||
``C:\\double\\bashslash\\paths`` in order to escape the backslash character. This is due to
|
||||
it being a YAML escape character.
|
||||
"""
|
||||
|
||||
_optional_keys = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue