[11ty] Problem writing Eleventy templates: (more in DEBUG output)
[11ty] 1. Having trouble rendering md template ./src/pages/en/auditory-disabilities.md (via TemplateContentRenderError)
[11ty] 2. expected ":" after filter name, file:./src/pages/en/auditory-disabilities.md, line:1, col:45 (via TokenizationError)
[11ty]
[11ty] Original error stack trace: expected ":" after filter name, file:./src/pages/en/auditory-disabilities.md, line:1, col:45
[11ty] >> 1| /{{ locale }}/{{ title | slugify | striptags(true) | escape | nl2br }}/
[11ty] ^
[11ty] TokenizationError: expected ":" after filter name, file:./src/pages/en/auditory-disabilities.md, line:1, col:45
[11ty] at Tokenizer.error (/Users/shawnthompson/Documents/git/github/gc-da11yn/gc-da11yn.github.io/node_modules/liquidjs/dist/liquid.node.cjs.js:1746:16)
This file contains 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
javascript:(function() { | |
let headings = document.querySelectorAll("h1[id], h2[id], h3[id], h4[id], h5[id], h6[id]"); | |
if (!headings.length) { | |
alert("No headings with IDs found."); | |
return; | |
} | |
let toc = ""; | |
let lastLevel = 1; // Tracks the last heading level | |
let indent = ""; // Used for indentation |
This file contains 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
.env | |
secrets/ | |
# Ignore all .log files globally | |
*.log | |
# Ignore everything in appdata/ | |
appdata/* | |
# Allow appdata/traefik3 |
This file contains 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
javascript:(function() { | |
var elements = document.querySelectorAll('[tabindex]'); | |
elements.forEach(function(element) { | |
element.removeAttribute('tabindex'); | |
}); | |
})(); |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Media Server Apps Tracker</title> | |
<!-- Bootstrap CSS --> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<style> |
This file contains 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
const markdownIt = require('markdown-it'); | |
const markdownItAnchor = require('markdown-it-anchor'); | |
const markdownItAttrs = require('markdown-it-attrs'); | |
const { EleventyHtmlBasePlugin } = require('@11ty/eleventy'); | |
const stripHtml = require('string-strip-html'); | |
// const { slugify } = require("@11ty/eleventy"); | |
module.exports = function(eleventyConfig) { |
This file contains 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
{ | |
"Analysis": { | |
"id": "analysis", | |
"mainFocus" : [ | |
"Business Vision", | |
"Rules", | |
"Requirements" | |
], | |
"description" : "Writes business requirements and/or initial user stories, are concerned with ensuring that the project delivers the agreed-upon business benefits.", | |
"roles": [{ |
- remove ssh to server from
~/.ssh/know_host
file - add sudo user
adduser username
- give user sudo power
usermod -aG sudo username
- switch to non root user
su username
- update apt-get
sudo apt-get update
- install firewall
sudo apt-get ufw
- open SSH port in firewall
sudo ufw allow OpenSSH
- enable firewall
sudo ufw enable
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page with pull outs</title> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<ul> |
This file contains 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
{ | |
"1. Perceivable": [ | |
{ | |
"1.1 Text Alternatives": { | |
"url": "", | |
"description": "" | |
}, | |
"1.1.1 Non-text Content": { | |
"url": "", | |
"description": "" |
NewerOlder