docsgood first issuehelp wanted
説明
As noted on slack, I've run into a couple of road-blocks when exploring some features. Noting them here for posterity:
- on this page, there's an example block with
{{ispage blog/*}} {{insert head_blog}}{{end}}.ispagehas some documentation here, but I can't find where insert is documented. - Similarly, things like
{{fill x}}here aren't super clear, but I can't find other documentation. - Separately, I found the function in the julialang.org utils.jl file to generate blogposts, and they use the pagevar function, which I can't find on the docs page, but which does have a docstring from the REPL
To quote tlienart:
Thanks, feel free to list these points in an issue, so we can chip at it gradually :slightly_smiling_face: Just quickly in case this is blocking you now:
insertinserts anything "as is" in HTML taking as base path the_layout/folderfillinserts the content of a page variable, shortcut{{x}}is the same as{{fill x}}if x is un-ambiguous (i.e. there is nohfun_x)pagevaris to get a page variable from a page that is different from the current one it works aspagevar(rpath, name)whererpathis the path of the other page likeblog/foo/bar.mdand name is the name of the page variable defined there that you'd want to include.