We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apart from being able to apply different formats per cell, it would be great if we can also apply different formats inside a single cell.
As an example, I want to print "Steve Jobs_", but I want the asterisk (_) to be of different color and size.
(This can be done with pdfkit by using the "continued" key as parameter in .text() method)
Something like this: doc.fillColor(‘black’) .fontSize(10) .text(“Steve Jobs”, {continued: true, width: 50}) .fontSize(18) .fillColor(‘red’) .text(“*”);
I hope this can be available soon! 👍 Thank you Nathan!
The text was updated successfully, but these errors were encountered:
I second this request!
Sorry, something went wrong.
We would also use this, we've had instances where we need to create bold text in the middle of a string, for emphasis.
I wonder if, for FRG, some kind of simplified Markdown syntax would be possible. 🤔
No branches or pull requests
Apart from being able to apply different formats per cell, it would be great if we can also apply different formats inside a single cell.
As an example, I want to print "Steve Jobs_", but I want the asterisk (_) to be of different color and size.
(This can be done with pdfkit by using the "continued" key as parameter in .text() method)
Something like this:
doc.fillColor(‘black’)
.fontSize(10)
.text(“Steve Jobs”, {continued: true, width: 50})
.fontSize(18)
.fillColor(‘red’)
.text(“*”);
I hope this can be available soon! 👍 Thank you Nathan!
The text was updated successfully, but these errors were encountered: