()
| 181 | return cf.Format == "blog" |
| 182 | } |
| 183 | func (cf *CollectionFormat) PostsPerPage() int { |
| 184 | if cf.Format == "novel" { |
| 185 | return postsPerPage |
| 186 | } |
| 187 | return postsPerPage |
| 188 | } |
| 189 | |
| 190 | // Valid returns whether or not a format value is valid. |
| 191 | func (cf *CollectionFormat) Valid() bool { |
no outgoing calls
no test coverage detected