Literal Includes with Line Numbers Starting from 200¶
200 201 202 203 204 205 206 207 208 209 210 211 212 213 | # Literally included file using Python highlighting
# -*- coding: utf-8 -*-
foo = "Including Unicode characters: üöä"
class Foo:
pass
class Bar:
def baz():
pass
# comment after Bar class definition
def bar(): pass
|