-
Notifications
You must be signed in to change notification settings - Fork 1.6k
render markdown, strip html tags in indexing #1148
Conversation
✔️ Deploy Preview for developer-chrome-com ready! 🔨 Explore the source changes: b7961c1 🔍 Inspect the deploy log: https://app.netlify.com/sites/developer-chrome-com/deploys/611c8faee0716900088c3411 😎 Browse the preview: https://deploy-preview-1148--developer-chrome-com.netlify.app |
What case are you worried about? One that I could think of is if someone tries to have a |
You're demoing |
ah sorry, I didn't notice that you said |
Object.defineProperty(algoliaCollectionItem, 'content', { | ||
get() { | ||
// Strip HTML tags and limit to a sensible size for indexing. | ||
const text = striptags(item.templateContent ?? ''); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this already rendered content, e.g. with shortcodes rendered in?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes - templateContent is itself a getter which renders the final page content but only when 11ty is rendering pages. If we get it here, we crash.
8cd7844
to
d979b11
Compare
@samthor any idea why the linter is failing? it seems to be missing a module |
I expanded the typechecking a tiny bit. I've fixed the other types issues in an extra commit here. |
ec9941b
to
b7961c1
Compare
Fixes #917
Fixes #924
I know @devnook tried to solve this in #923. I disagree with @robdodson 's comment, I think we should
break-word
just in case.Fixes a minor display issue too; if we don't have content on page (which happens for some of the structural pages), fall back to the meta description.