2

I have the source in html entities (eg: cover) I want to convert them into simple readable plain text (eg: abcdef...)

how can i do that using YQL or Yahoo Pipes? (eg: i want to convert cover into cover using YQL or Yahoo pipes)

salathe
  • 51,324
  • 12
  • 104
  • 132
Nok Imchen
  • 2,802
  • 7
  • 33
  • 59
  • How do you currently get the HTML entities? Would you be up for creating a [data table](http://developer.yahoo.com/yql/guide/yql-creating-opentables-chapter.html) (within which you can run JavaScript to do the decoding)? – salathe Jan 11 '11 at 13:19

1 Answers1

0

Use the following components:

select * from xslt where url="//foo.html" and stylesheet="//bar.xsl"

  • An entity declaration

    <!DOCTYPE xsl:stylesheet[
    <!ENTITY 99 "c">
    <!ENTITY 111 "o">
    <!ENTITY 118 "v">
    <!ENTITY 101 "e">
    <!ENTITY 114 "r">
    ]>
    

References

Community
  • 1
  • 1
Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265