fix: sanitize quotes
This commit is contained in:
parent
79b1120de7
commit
e6dab2a329
3 changed files with 4 additions and 3 deletions
|
@ -35,6 +35,7 @@ export default {
|
||||||
if (!string) return
|
if (!string) return
|
||||||
return string.replace(utmPattern, '')
|
return string.replace(utmPattern, '')
|
||||||
},
|
},
|
||||||
|
replaceQuotes: (string) => string.replace(/"/g, "'"),
|
||||||
|
|
||||||
// analytics
|
// analytics
|
||||||
getPopularPosts: (posts, analytics) => {
|
getPopularPosts: (posts, analytics) => {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "7.10.7",
|
"version": "7.10.8",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
"items": [{% for entry in entries limit: 20 -%}
|
"items": [{% for entry in entries limit: 20 -%}
|
||||||
{
|
{
|
||||||
"id": "{{ entry.url | btoa }}",
|
"id": "{{ entry.url | btoa }}",
|
||||||
"title": "{{ entry.title }}",
|
"title": "{{ entry.title | replaceQuotes }}",
|
||||||
"url": "{{ entry.url }}",
|
"url": "{{ entry.url }}",
|
||||||
"content_text": "{{ entry.title }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
|
"content_text": "{{ entry.title | replaceQuotes }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
|
||||||
"date_published": "{{ entry.date | stringToRFC822Date }}"
|
"date_published": "{{ entry.date | stringToRFC822Date }}"
|
||||||
}{% if not forloop.last %},{% endif %}
|
}{% if not forloop.last %},{% endif %}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
Reference in a new issue