(language)
| 1863 | }, |
| 1864 | methods: { |
| 1865 | codeClass(language) { |
| 1866 | return 'language-' + (normalizeCodeLanguage(language) || 'plaintext'); |
| 1867 | }, |
| 1868 | shouldShowEntrySummary(entry) { |
| 1869 | if (!entry || !String(entry.summary || '').trim()) { |
| 1870 | return false; |
nothing calls this directly
no test coverage detected