Skip to main content
Known Participant
March 19, 2022
Question

PAC 3 "Possibly inappropriate use of "quote" structure element.

  • March 19, 2022
  • 1 reply
  • 3040 views

Hi there, 

I ran my pdf through the PAC 3 accessibility checker, and everything is passing except for an error that says "Possibly inappropriate use of a "Quote" Structure. Does anyone know what the issue could be? At first I thought it was because I had a separate text box for the quote, and that's why i was getting an error message, but it's still happening when I placed the quote in an already existing text box. Any help would be greatly appreciated!

1 reply

Bevi Chagnon - PubCom.com
Legend
March 20, 2022

Per the PDF/UA-1 standard, <Quote> is an inline text-level tag and doesn't encase an entire paragraph. It's usually nested inside a <P> tag.

 

But <BlockQuote> is a block-level tag for an entire paragraph.

 

Samples of the both:

 

<P> John said, <Quote>let's go to lunch</Quote> and the group headed to the cafe. </P> {The quote is within the sentence or paragraph.}

 

<P> During his speech to the US Congress, Ukranian President Zelensky said: </P>

<BlockQuote> {new paragraph} Right now, the destiny of our country is being decided, the destiny of our people, whether Ukrainians will be free, whether they will be able to preserve their democracy. </BlockQuote>

 

Switch your tag from <Quote> to <BlockQuote> and see if it passes.

 

|&nbsp;&nbsp;&nbsp;&nbsp;Bevi Chagnon &nbsp;&nbsp;|&nbsp;&nbsp;Designer, Trainer, &amp; Technologist for Accessible Documents ||&nbsp;&nbsp;&nbsp;&nbsp;PubCom |&nbsp;&nbsp;&nbsp;&nbsp;Classes &amp; Books for Accessible InDesign, PDFs &amp; MS Office |
Choco_123Author
Known Participant
March 27, 2022

Thank you so much Bevi!  I will definitely try that and report back 🙂