(str, isHtml = true)
| 221 | } |
| 222 | |
| 223 | export function htmlMetaDescription(str, isHtml = true) { |
| 224 | const text = isHtml ? htmlToPlainText(str) : str; |
| 225 | // https://moz.com/learn/seo/meta-description |
| 226 | return truncateString(text, 155); |
| 227 | } |
| 228 | |
| 229 | /** |
| 230 | * Admin urls |
no test coverage detected