Skip to content

Instantly share code, notes, and snippets.

@romikoops
Created May 17, 2018 15:29
Show Gist options
  • Save romikoops/0c72e64441973f0b668842951ca9bc79 to your computer and use it in GitHub Desktop.
Save romikoops/0c72e64441973f0b668842951ca9bc79 to your computer and use it in GitHub Desktop.
sax_machine html
class ServiceResponse
include SAXMachine
elements :candidate
end
response = ServiceResponse.parse("
<response>
<candidate>&lt;ul&gt;&lt;li&gt;Vous disposez d'environ 5 ans d'exp&#xE9;rience en comptabilit&#xE9; id&#xE9;alement au sein de soci&#xE9;t&#xE9;s internationales ;&lt;/li&gt;&lt;li&gt;Vous ma&#xEE;trisez les normes comptables suisses et les US Gaap ;&lt;/li&gt;&lt;li&gt;Vous avez une bonne ma&#xEE;trise des outils informatiques (Excel et JDE) ;&lt;/li&gt;&lt;li&gt;Vous pouvez travailler en fran&#xE7;ais, comme en anglais.&lt;/li&gt;&lt;/ul&gt;</candidate>
</response>
")
response.candidate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment