hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.5K
active users

Today I'm working to move my Figma designed resume into good ole HTML and (print) CSS!

Some quick googling on available schemas, and it seems like json-resume is the go to. It falls apart for me under a little scrutiny, because I'd like to list multiple date ranges of employment for an employer.

So I'll be using a modified version and cursing myself if there's ever any real standardization in the future

Ryan

Disabling anchor tags on a specific page is as easy as

```js
eleventyConfig.addPlugin(IdAttributePlugin, {
filter: function ({ page }) {
const pathsToSkip = ["resume.njk"];
if (pathsToSkip
.some((str) => page.inputPath.endsWith(str))
) {
return false;
}
return true;
},
});
```