We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

How can I spell out ticker symbols such as CSCO or MSFT in p

Answers to common Plum DEV questions

Moderators: admin, support

Locked
support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

How can I spell out ticker symbols such as CSCO or MSFT in p

Post by support »

You can spell out any arbitrary string of text by wrapping a
<say-as type="acronym"> tag around it. E.g.

Code: Select all

<form id="sayas_test">
  <block>
    <prompt>
      <say-as type="acronym">MSFT</say-as> is currently trading at 
      <say-as type="currency">$25.03</say-as>. 
      <say-as type="acronym">CSCO</say-as> is currently trading at 
      <say-as type="currency">$17.84</say-as>. 
    </prompt>
  </block>
</form>
Note that <say-as> tags can only be used inside a <prompt>

Locked