<?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: Text formatting in Jira description field in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9139#M3762</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have successfully used the .gsub formula for replacing &amp;lt; /br&amp;gt; with \\ which is the line feed in Jira, but I have other html tags that need to be transformed as well and I very much doubt that it can be done in the same .gsub.&lt;BR /&gt;I'm not familiar with Python unfortunately.&lt;/P&gt;&lt;P&gt;/Christopher&lt;/P&gt;</description>
    <pubDate>Tue, 11 Mar 2025 14:06:22 GMT</pubDate>
    <dc:creator>Chris66</dc:creator>
    <dc:date>2025-03-11T14:06:22Z</dc:date>
    <item>
      <title>Text formatting in Jira description field</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9135#M3758</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm having difficulties when formatting the text in the description field of a Jira issue.&lt;/P&gt;&lt;P&gt;The source text can either be pure text or html. If it is pure text, any kind of formatting is simply ignored. When I use html it is not formatted accordingly, i.e. the App "Create issue in Jira" does not map the html codes into the corresponding Jira codes.&lt;BR /&gt;Of course I can use a formula instead, e.g. gsub, but that works only for one single html code like line feed.&lt;/P&gt;&lt;P&gt;Is there any way that multiple html codes can be mapped to the Jira codes in one go/formula?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 11:26:56 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9135#M3758</guid>
      <dc:creator>Chris66</dc:creator>
      <dc:date>2025-03-11T11:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting in Jira description field</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9136#M3759</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/11590"&gt;@Chris66&lt;/a&gt;,&lt;BR /&gt;1. Can you try searching for a Jira issue and validate how is it formatting the text and make changes accordingly.&lt;BR /&gt;2. You might have to go with a python script for text formatting.&lt;BR /&gt;Regards,&lt;BR /&gt;Prudvi&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 12:46:49 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9136#M3759</guid>
      <dc:creator>Prudvi</dc:creator>
      <dc:date>2025-03-11T12:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting in Jira description field</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9139#M3762</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have successfully used the .gsub formula for replacing &amp;lt; /br&amp;gt; with \\ which is the line feed in Jira, but I have other html tags that need to be transformed as well and I very much doubt that it can be done in the same .gsub.&lt;BR /&gt;I'm not familiar with Python unfortunately.&lt;/P&gt;&lt;P&gt;/Christopher&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 14:06:22 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9139#M3762</guid>
      <dc:creator>Chris66</dc:creator>
      <dc:date>2025-03-11T14:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting in Jira description field</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9153#M3770</link>
      <description>&lt;P&gt;Have you tried .encode (instead of gsub). Also, can you provide an example?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 15:19:21 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9153#M3770</guid>
      <dc:creator>ansa</dc:creator>
      <dc:date>2025-03-12T15:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting in Jira description field</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9155#M3772</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;some examples:&lt;/P&gt;&lt;P&gt;html: &amp;lt;h3&amp;gt;&amp;nbsp; -&amp;gt; Jira: h3.&lt;BR /&gt;html: &amp;lt;b&amp;gt;&amp;nbsp; -&amp;gt; Jira: *strong*&lt;BR /&gt;html : &amp;lt;br /&amp;gt;&amp;nbsp; -&amp;gt; Jira: \\&lt;/P&gt;&lt;P&gt;So what I need is a complete translator of html tags to their corresponding Jira tags. I don't think that .encode does the trick.&lt;BR /&gt;I was more thinking about a subroutine / separate recipe which basically does this transformation. Either with a collection of .gsubs or a lookup table.&lt;/P&gt;&lt;P&gt;/Christopher&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 18:25:05 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/text-formatting-in-jira-description-field/m-p/9155#M3772</guid>
      <dc:creator>Chris66</dc:creator>
      <dc:date>2025-03-12T18:25:05Z</dc:date>
    </item>
  </channel>
</rss>

