wjschne / apaquarto

A quarto extension for creating APA7 documents in .docx, .html, and .pdf formats
https://wjschne.github.io/apaquarto/
Creative Commons Zero v1.0 Universal
170 stars 15 forks source link

block quotes #21

Closed larkinrt closed 1 year ago

larkinrt commented 1 year ago

Hi, thanks again for the hard work!

I am trying to do block quotes such as:

image

The problem is the line after the paragraph is always indented upon rendering. I probably just don't know what command to use for the following line, been trying to google but to no avail. Is there an easy way to make the line after a block quote left justified (no indent)?

wjschne commented 1 year ago

Thanks for alerting me to this issue. I have added the ability to create paragraphs with no indenting. I demonstrated its use in the new template.qmd in the Block Quotation section. Basically, you enclose the paragraph in a div and give it a .NoIndent class:

:::{.NoIndent}
This paragraph will not be indented.
:::
larkinrt commented 1 year ago

Works great! Thank you for the prompt fix.

On Nov 10, 2023, at 06:24, W. Joel Schneider @.***> wrote:

Thanks for alerting me to this issue. I have added the ability to create paragraphs with no indenting. I demonstrated its use in the new template.qmd in the Block Quotation section. Basically, you enclose the paragraph in a div and give it a .NoIndent class:

:::{.NoIndent} This paragraph will not be indented. ::: — Reply to this email directly, view it on GitHub https://github.com/wjschne/apaquarto/issues/21#issuecomment-1806036710, or unsubscribe https://github.com/notifications/unsubscribe-auth/AF2IXWS3GXC2OOHZLTLHGJ3YDZIKRAVCNFSM6AAAAAA7GECKNSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMBWGAZTMNZRGA. You are receiving this because you authored the thread.

wjschne commented 1 year ago

Glad it worked!