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
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;
},
});
```