Replies: 1 comment 5 replies
-
I think I'm struggling to follow a bit here... But here's what I understand so far: After disabling some stuff locally, I got this installed on macOS 12 w/ 2021 rMBP (wow it really didn't seem to like installing "sharp" module), and get the following output: npm run build:eleventy -- --serve
> [email protected] build:eleventy
> eleventy
(node:23557) Warning: Using deprecated markdown-it-anchor permalink option, see https://github.com/valeriangalliat/markdown-it-anchor#todo-anchor-or-file
(Use `node --trace-warnings ...` to show where the warning was created)
Writing dist/grammar/strongwordcontraction/index.html from ./src/grammar/strongwordcontraction.md.
Writing dist/grammar/alphabeticwordsigns/index.html from ./src/grammar/alphabeticwordsigns.md.
Writing dist/colophon/index.html from ./src/colophon.md.
Writing dist/grammar/index.html from ./src/grammar.md.
Writing dist/index.html from ./src/index.md.
Writing dist/tags/all/index.html from ./src/tags.md.
Writing dist/posts/c/index.html from ./src/alphabeticwordsigns/c.md.
Writing dist/posts/b/index.html from ./src/alphabeticwordsigns/b.md.
Writing dist/posts/d/index.html from ./src/alphabeticwordsigns/d.md.
Writing dist/posts/f/index.html from ./src/alphabeticwordsigns/f.md.
Writing dist/posts/e/index.html from ./src/alphabeticwordsigns/e.md.
Writing dist/posts/a/index.html from ./src/alphabeticwordsigns/a.md.
Writing dist/posts/i/index.html from ./src/alphabeticwordsigns/i.md.
Writing dist/posts/j/index.html from ./src/alphabeticwordsigns/j.md.
Writing dist/posts/h/index.html from ./src/alphabeticwordsigns/h.md.
Writing dist/posts/n/index.html from ./src/alphabeticwordsigns/n.md.
Writing dist/posts/l/index.html from ./src/alphabeticwordsigns/l.md.
Writing dist/posts/k/index.html from ./src/alphabeticwordsigns/k.md.
Writing dist/posts/g/index.html from ./src/alphabeticwordsigns/g.md.
Writing dist/posts/m/index.html from ./src/alphabeticwordsigns/m.md.
Writing dist/posts/p/index.html from ./src/alphabeticwordsigns/p.md.
Writing dist/posts/q/index.html from ./src/alphabeticwordsigns/q.md.
Writing dist/posts/t/index.html from ./src/alphabeticwordsigns/t.md.
Writing dist/posts/s/index.html from ./src/alphabeticwordsigns/s.md.
Writing dist/posts/v/index.html from ./src/alphabeticwordsigns/v.md.
Writing dist/posts/u/index.html from ./src/alphabeticwordsigns/u.md.
Writing dist/posts/r/index.html from ./src/alphabeticwordsigns/r.md.
Writing dist/posts/x/index.html from ./src/alphabeticwordsigns/x.md.
Writing dist/posts/y/index.html from ./src/alphabeticwordsigns/y.md.
Writing dist/posts/z/index.html from ./src/alphabeticwordsigns/z.md.
Writing dist/posts/w/index.html from ./src/alphabeticwordsigns/w.md.
Writing dist/child/index.html from ./src/strongwordsigns/child.md.
Writing dist/tags/alphabetic wordsign/index.html from ./src/tags.md.
Writing dist/tags/strong word sign/index.html from ./src/tags.md.
Writing dist/tags/strong group sign/index.html from ./src/tags.md.
Writing dist/tags/grammar/index.html from ./src/tags.md.
Writing dist/tags/strongwordsigns/index.html from ./src/tags.md.
Writing dist/tags/alphabeticwordsigns/index.html from ./src/tags.md.
Copied 8 files / Wrote 38 files in 0.18 seconds (4.7ms each, v0.12.1) Specifically, these were the files/lines I found interesting:
But the link above you mentioned that 404ed was https://braille.netlify.app/tag/strong-word-sign/ Apart from that, there might be a pluralization issue somewhere I can't quite track down. Tweaking the URL to http://localhost:8080/tags/strong-word-sign/ works locally, but returns a page w/ no entries (but at least not a 404). |
Beta Was this translation helpful? Give feedback.
-
I have a website about Grade 2 Braille and clicking on a tag such as strong word sign doesn't show a tag page for that tag.
I have a folder called alphabeticwordsigns and another called strongwordsigns. I created custom collections to show them on the index page.
Here is the nunjucks template for the index page: and you can view the strongwordsigns and alphabeticwordsigns partials here
I'm not sure if I'm generating the tag page incorrectly. Below is the nunjucks template:
and here is the markdown page:
This is what a typical markdown page for a contraction looks like:
Now I think I'm interpretting tag collecting incorrectly but I'm not sure how. How should I go about creating this tag page?
Beta Was this translation helpful? Give feedback.
All reactions