show vs tell

This commit is contained in:
2026-03-02 18:29:00 +10:00
parent ad2c243849
commit d2fe2daa9b
7 changed files with 93 additions and 11 deletions

View File

@@ -68,13 +68,22 @@ function classifyType(contextBefore: string): AnnotationType {
if (contextBefore.includes('passive')) return 'passive_voice'
if (
contextBefore.includes('consistency') ||
contextBefore.includes('character') ||
contextBefore.includes('timeline') ||
contextBefore.includes('repeated') ||
contextBefore.includes('contradiction')
) {
return 'consistency'
}
if (
contextBefore.includes('show don') ||
contextBefore.includes('show-don') ||
contextBefore.includes('show vs tell') ||
contextBefore.includes('show/tell') ||
contextBefore.includes('telling') ||
contextBefore.includes('told') && contextBefore.includes('show')
) {
return 'show_tell'
}
return 'style'
}