hello world

a first post. here's some code:

function greet(name) {
  return `hello, ${name}`;
}

and here's a GitHub embed — the build scripts from the 11ty website:

package.json L11-L17 view on github
11
12
13
14
15
16
17
    "check-links": "npx check-html-links _site",
    "build": "npx @11ty/eleventy --quiet && npm run create-search-index",
    "build-production": "npm run get-new-data && NODE_ENV=production npx @11ty/eleventy && npm run create-search-index",
    "start": "npx @11ty/eleventy --serve --quiet --port=8091 --incremental",
    "start-production": "NODE_ENV=production npx @11ty/eleventy --serve --quiet --port=8091",
    "create-search-index": "npx pagefind --site \"_site\" --glob \"{docs,blog}/**/*.html\"",
    "get-new-data": "rm -rf ./src/_data/builtwith/ && npx degit github:11ty/11ty-community/built-with-eleventy src/_data/builtwith/",

and here's an image co-located with this post:

a sample image

shoutout to @yujonglee@yujonglee and @zachleat@zachleat.