Werner Strydom
Werner Strydom
Create a sample that shows how to read an external datasource, e.g. a JSON, YAML or XML file, and generate pages from it. Here's some examples of external sources: -...
Create a sample showing how to use Metalsmith to create technical documentation.
Create a sample that shows how to use metalsmith to create an eBook outputting the book in different formats, e.g. PDF, EPUB, MOBI and naturally HTML.
Create a sample that shows how to create a simple blog, where the home page shows the most recent blog entries, order descending. In the footer have links to Twitter,...
Create a sample that shows how to create a simple website, consisting of an index page with links to Twitter, GitHub and Facebook. The purpose of this sample is to...
### Description Assume for a minute you have resources in vCenter that supports tags, and you'd like to attach tags to them. Examples include existing datastores, hosts, content items, and...
### Description Suppose you'd like to bootstrap your vCenter environment in Terraform. This may include finding all data stores that meet specific criteria, e.g. ends with "-data" and tag them...
**Describe the solution you'd like** When PRs already exist for specific repositories, include them in a summary to share them with a team. Currently, the summary only shows when new...
Consider the following file `hello.c` ``` #include int main() { fprintf(stdout, "Hello World\n"); } ``` Consider the following markdown document `sample.md` ```` Sample Code ```{include=hello.c} ``` ```` Build a PDF...
Consider the following bash script `src/golang/hello/build.sh`: ``` #!/bin/sh ./hello -arg1 arg1 -arg2 arg2 -arg3 arg3 -arg4 arg4 -arg5 arg5 ``` In my markdown, I'd like to specify the something like...