<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can you remove tags from some items in accessible ODS PDF output? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/569648#M22914</link>
    <description>&lt;P&gt;Okay, I'll try reaching out to tech support for removing tags for footnotes.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jun 2019 21:26:24 GMT</pubDate>
    <dc:creator>formerRuser</dc:creator>
    <dc:date>2019-06-27T21:26:24Z</dc:date>
    <item>
      <title>Can you remove tags from some items in accessible ODS PDF output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/568855#M22898</link>
      <description>&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm building accessible, 508 compliant PDFs in SAS 9.4 using ODS PDF. I need most items in the PDF to be "tagged" so that screen readers can navigate the document for the visually impaired. Therefore, I have turned on the "accessible" option. However, sometimes there are items which I do not want tagged: for instance, an empty P""; return in ODS TEXT or a footnote (see example below). How can I remove/prevent tags for some items in the PDF?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Now, I know that space between paragraphs could also be created using ods region, but I am creating thousands of PDFs automatically where the amount of information on each page differs, so I need the positioning of the paragraphs to be automatic. However, I am definitely open to other suggestions.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is some mock code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options orientation=portrait papersize=letter
			nodate nonumber
			topmargin = 0.25in
			bottommargin = 0.25in
			leftmargin = 0.50in
			rightmargin = 0.50in;

title;

ods pdf file="filepathhere\test.pdf"
			title = "My title here"
			author = "Me"
			accessible
			notoc;

			ods layout start style={bordercolor=white borderwidth=0pt};
			ods region	x=0.00in
					y=1.00in;
		
			ods proclabel="Tagging this section I think";
			proc odstext contents=""; /* Trying to avoid a tag here */
				H "This is my heading"
					/ style={font_face='calibri' fontsize=20pt just=c fontweight=bold};
				P "This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. "
					/ style={font_face='times new roman' fontsize=11pt just=l};
				P ""; /* This is a space between my two paragraphs, which I do not want tagged as a paragraph. */
				P "This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. "
					/ style={font_face='times new roman' fontsize=11pt just=l};
			run;

			footnote1 h=10pt j=r f='calibri' "This is my footnote"; /* I do not want the footnote tagged either */

			ods layout end;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2019 16:32:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/568855#M22898</guid>
      <dc:creator>formerRuser</dc:creator>
      <dc:date>2019-06-25T16:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can you remove tags from some items in accessible ODS PDF output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/568866#M22899</link>
      <description>Hi:&lt;BR /&gt;  This seems like a question for Tech Support -- if they need to consult with the accessibility team on this request, they have the ability to track the question and refer it to the correct people.&lt;BR /&gt;Cynthia</description>
      <pubDate>Tue, 25 Jun 2019 17:03:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/568866#M22899</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-06-25T17:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Can you remove tags from some items in accessible ODS PDF output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/568919#M22903</link>
      <description>&lt;P&gt;Don't have clue about all the other bits but if you are using the empty paragraph for vertical space I think you can get around that with the ESCAPECHAR and inline formatting with the NEWLINE function:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods escapechar='^';
			proc odstext contents=""; /* Trying to avoid a tag here */
				H "This is my heading"
					/ style={font_face='calibri' fontsize=20pt just=c fontweight=bold};
				P "This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. ^{newline 2} "
					/ style={font_face='times new roman' fontsize=11pt just=l };
				P "This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. This is a paragraph. "
					/ style={font_face='times new roman' fontsize=11pt just=l};
			run;
&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Jun 2019 20:24:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/568919#M22903</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-06-25T20:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can you remove tags from some items in accessible ODS PDF output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/569647#M22913</link>
      <description>&lt;P&gt;Thanks, I'll incorporate this for spacing.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 21:25:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/569647#M22913</guid>
      <dc:creator>formerRuser</dc:creator>
      <dc:date>2019-06-27T21:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can you remove tags from some items in accessible ODS PDF output?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/569648#M22914</link>
      <description>&lt;P&gt;Okay, I'll try reaching out to tech support for removing tags for footnotes.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 21:26:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Can-you-remove-tags-from-some-items-in-accessible-ODS-PDF-output/m-p/569648#M22914</guid>
      <dc:creator>formerRuser</dc:creator>
      <dc:date>2019-06-27T21:26:24Z</dc:date>
    </item>
  </channel>
</rss>

