Another Example Markdown Post
Another minimal example of using markdown with fastpages.
Example Markdown Post
Example code from pandas documentation:
Nesting functions:
f(g(h(df), arg1=a), arg2=b, arg3=c)
Using pandas piping feature:
(df.pipe(h)
.pipe(g, arg1=a)
.pipe(func, arg2=b, arg3=c)
)