Changes between Initial Version and Version 1 of Ticket #17994, comment 1
- Timestamp:
- Mar 28, 2012, 10:15:10 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17994, comment 1
initial v1 3 3 as such, the safe mode feature and markdown's "enable_attributes" were coupled in Django 1.4 : https://docs.djangoproject.com/en/dev/releases/1.4/#attributes-disabled-in-markdown-when-safe-mode-set 4 4 5 So if you want to enable markdown features that are not safe, just do not pass the "safe" parameter to the tag. 5 So if you want to enable markdown features that are not safe, including links and attributes, the safe parameter must now be dropped. 6 7 A customized tag could always be used if you want to override Django's behavior, but these were tightly coupled as a security measure.