^^^^^^^^^^^^^^^^^^^^^
- Add the ``sanitize`` config option (thanks `xgouchet`_).
You can now substitute characters or whole patterns with the
``sanitize`` option:
.. code-block:: yaml
sanitize:
'!?&|\^_$%*': '_' replace any of '!?&|\^_$%*' with '_'
're:colou?r': 'color' replace regex 'colou?r' with 'color'
The default is ``'!?&|\^_$%*': '_'``, which is the list of
characters that are not allowed in job names.