Skip to content

Instantly share code, notes, and snippets.

#Execute as root
stud -f *,443 -b 127.0.0.1,8080 -u myuser -g mygroup --ssl /path/to/cert_and_key.pem

My headers

hello

テスト

hello

漢字

hello

全角スペース テスト

site_name: My Docs
markdown_extensions:
tox:
slugify: !!python/object:myslugify.slugify
import re
import unicodedata
def slugify(value, separator):
""" Slugify a string, to make it URL friendly. """
normalized = unicodedata.normalize('NFKD', value)
v = normalized.strip().lower()
return re.sub('[%s\s]+' % separator, separator, v)