Skip to content

Instantly share code, notes, and snippets.

@cptvitamin
Created May 19, 2016 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cptvitamin/41eb881a10491689b716ee346dadc134 to your computer and use it in GitHub Desktop.
Save cptvitamin/41eb881a10491689b716ee346dadc134 to your computer and use it in GitHub Desktop.
example of recommended markdown to OLX conversion
This is your final exam.
---
You must answer this question to complete the course.
>>This course was:<<
[ ] fun
[ ] boring
[ ] educational
Check all that apply
---
This is optional
>>I would recommend this course to a friend<<
() yes
() no
would be this in OLX:
<problem>
<description>
This is your final exam.
</description>
<question>
<description>
You must answer this question to complete the course.
</description>
<label>This course was:</label>
<choiceresponse>
<checkboxgroup>
<choice>fun</choice>
<choice>boring</choice>
<choice>educational</choice>
</checkboxgroup>
</choiceresponse>
<description>
Check all that apply
</description>
</question>
<question>
<description>This is optional</description>
<label>I would recommend this course to a friend</label>
<multiplechoiceresponse>
<choicegroup label="I would recommend this course to a friend" type="MultipleChoice">
<choice correct="false">yes</choice>
<choice correct="false">no</choice>
</choicegroup>
</multiplechoiceresponse>
</question>
</problem>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment