Question: How do you turn off Django?s automatic HTML escaping for part of a web page?

  1. Place that section between paragraph tags containing the autoescape=off switch.
  2. Wrap that section between { percentage mark autoescape off percentage mark} and {percentage mark endautoescape percentage mark} tags.
  3. Wrap that section between {percentage mark autoescapeoff percentage mark} and {percentage mark endautoescapeoff percentage mark} tags.
  4. You don't need to do anything?autoescaping is off by default.

Answer: The correct answer of the above question is Option D:You don't need to do anything?autoescaping is off by default.