This section demonstrates our styling of markdown content.
This is body copy.
This is a basic block quote
This is more body copy.
This is a list
This is an ordered list
This text uses emphasize formatting.
This text uses strong formatting.
This is a link
This is a code block.
const a = 2
This is body copy that includes inline code
.
This is a code block with a live editor.
This is a code block with jsx
syntax highlighting.
// commentfunction formatName(user) {return user.firstName + ' ' + user.lastName}const user = {firstName: 'Harper',lastName: 'Perez',}const element = <h1>Hello, {formatName(user)}!</h1>
This is a code block with python
syntax highlighting.
# comment@decorator(param=1)def f(x):""" Syntax Highlighting Demo@param x Parameter"""s = ("Test", 2+3, {'a': 'b'}, x) # Commentprint s[0].lower()class Foo:def __init__(self):byte_string = 'newline:\n also newline:\x0a'text_string = u"Cyrillic Я is \u042f. Oops: \u042g"self.makeSense(whatever=1)def makeSense(self, whatever):self.sense = whateverif True:passx = len('abc')print(f.__doc__)