RST Markup Examples

Heading 1

Heading 2

Heading 3

Heading 4
Heading 5
Heading 6
  1. Select Advanced Settings.
  2. Find the Course Advertised Start Date policy key.
  3. Enter the value you want to display.
  1. Review your entry to verify that the key is accurate and that it is surrounded by quotation marks. If there is a list of keys, they must be comma separated.

    • In this example, the key for the Annotation Problem tool is the only value in the list.
    • In this example, the key for the Annotation Problem tool is added at the beginning of a list of other keys.
  2. Select Save Changes.

  3. In the lms.yml and studio.yml files, set the value of CERTIFICATES_HTML_VIEW within the FEATURES object to true.

    "FEATURES": {
        ...
        'CERTIFICATES_HTML_VIEW': true,
        ...
    }
    
  4. Save the lms.yml and studio.yml files.

Warning

Warnings are formatted in the same way as notes. In the same way, lines must be broken and indented under the warning tag.

<problem>
    <annotationresponse>
        <annotationinput>
        <text>PLACEHOLDER: Text of annotation</text>
            <comment>PLACEHOLDER: Text of question</comment>
            <comment_prompt>PLACEHOLDER: Type your response below:</comment_prompt>
            <tag_prompt>PLACEHOLDER: In your response to this question, which tag below
            do you choose?</tag_prompt>
        <options>
            <option choice="incorrect">PLACEHOLDER: Incorrect answer (to make this
            option a correct or partially correct answer, change choice="incorrect"
            to choice="correct" or choice="partially-correct")</option>
            <option choice="correct">PLACEHOLDER: Correct answer (to make this option
            an incorrect or partially correct answer, change choice="correct" to
            choice="incorrect" or choice="partially-correct")</option>
            <option choice="partially-correct">PLACEHOLDER: Partially correct answer
            (to make this option a correct or partially correct answer,
            change choice="partially-correct" to choice="correct" or choice="incorrect")
            </option>
        </options>
        </annotationinput>
    </annotationresponse>
    <solution>
    <p>PLACEHOLDER: Detailed explanation of solution</p>
    </solution>
</problem>

For example, this is the introductory paragraph

<p>and this is the code block following.</p>

these words

Field Type Details
correct_map dict

For each problem ID value listed by answers, provides:

  • correctness: string; 'correct', 'incorrect'
  • hint: string; Gives optional hint. Nulls allowed.
  • hintmode: string; None, 'on_request', 'always'. Nulls allowed.
  • msg: string; Gives extra message response.
  • npoints: integer; Points awarded for this answer_id. Nulls allowed.
  • queuestate: dict; None when not queued, else {key:'', time:''} where key is a secret string dump of a DateTime object in the form '%Y%m%d%H%M%S'. Nulls allowed.
grade integer Current grade value.
max_grade integer Maximum possible grade value.

links

social