(StringBuilder out, Spanned text, int start, int end,
int option)
| 232 | } |
| 233 | |
| 234 | private /* static */ void withinBlockquote(StringBuilder out, Spanned text, int start, int end, |
| 235 | int option) { |
| 236 | if ((option & TO_HTML_PARAGRAPH_FLAG) == TO_HTML_PARAGRAPH_LINES_CONSECUTIVE) { |
| 237 | withinBlockquoteConsecutive(out, text, start, end); |
| 238 | } else { |
| 239 | withinBlockquoteIndividual(out, text, start, end); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | private /* static */ void withinBlockquoteIndividual(StringBuilder out, Spanned text, int start, |
| 244 | int end) { |
no test coverage detected