grg021 / pfflipper

Page Forest APP - Flipper: A split-flap display simulator
5 stars 1 forks source link

Three dashes display when no text on next page #29

Closed Bobby-Seidensticker closed 13 years ago

Bobby-Seidensticker commented 13 years ago

Type any text

Results: Three dashes are displayed

Expected: Three dashes shouldn't be displayed even though the user has yet to type anything for the next screen. One or two dashes should still display.

grg021 commented 13 years ago

Should now function as expected. Used the regex /\n-{3,}\n/m; to determine page breaks.

any text
---\n

should produce only 1 page. Note that you need a line break after three or more "-" in order to get a page break.

Bobby-Seidensticker commented 13 years ago

confirmed