-
Install asciinema.
Homebrew:
brew install asciinema
// Script to scrape the EKS Kubernetes versions from the AWS documentation
// and produce a JSON file that Renovate can parse.
// Usage: node eks-k8s-version-scraper.js > eks-k8s-versions.json
const axios = require('axios');
const cheerio = require('cheerio');
const fs = require('fs');
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Helper module for parsing front matter from a markdown file and returning | |
| # the front matter content as a map. | |
| # | |
| # Usage: | |
| # module "frontmatter" { | |
| # source = "./path/to/modules/frontmatter" | |
| # content = file("path/to/markdown/file.md") | |
| # } | |
| # | |
| # output "title_from_front_matter" { |
OlderNewer