This post was written in AsciiDoc with syntax highlighting.
def fib(n): a, b = 0, 1 for _ in range(n): a, b = b, a + b # classic return a
Code blocks travel into the RSS feed with inline styles.
AsciiDoc
Yes