Devon Govett ebeca3c680 Add continued option to text so that text with inline styles can be created. Closes #60, #180, #189.
The following example adds text with three sections (part1, part2, part3) in different fonts and colors.

doc.font('Helvetica', 13)
   .text(part1, 100, 300, { continued: yes, indent: 50 })
   .fillColor('red')
   .text(part2, { indent: 50, continued: yes })
   .font('Times', 13)
   .fillColor('green')
   .text(part3)
2014-02-16 11:56:31 -08:00
..
2014-02-15 00:41:01 -08:00
2013-03-12 10:29:21 -05:00
2013-03-23 16:38:29 -04:00