|
@@ -214,7 +214,7 @@ func appendAverages(wikiText string) string {
|
214
|
214
|
|
215
|
215
|
}
|
216
|
216
|
}
|
217
|
|
- if strings.Index(line, AVERAGE_MARK) != -1 {
|
|
217
|
+ if strings.Index(line, AVERAGE_MARK) != -1 && count > 2 {
|
218
|
218
|
expression := fmt.Sprintf("'''{{#expr:(%s)/%d round 2}}'''", strings.Join(scores, "+"), count)
|
219
|
219
|
newLine := "| " + AVERAGE_MARK + " " + expression
|
220
|
220
|
changedLines = append(changedLines, newLine)
|