You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove YAML unicode tags from Mkdocs config (#2998)
In the case of a unicode string without a unicode character, YAML adds a tag to
ensure the text is read as unicode, ie:
In [1]: import yaml
In [2]: yaml.dump(u'surprise!')
Out[2]: "!!python/unicode 'surprise!'\n"
This forces only literals are output to the YAML config, by using `safe_dump`
instead of `dump`
0 commit comments