Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
gcal_events uses the default input format as its filter (a call to check_markup() to make sure illegal or dangerous tags are stripped, to prevent cross-site scripting)
If you have your default input format set to something that does not allow using or tags, try changing it to allow them and see if that works. It may be possible to set which input format the module should use, but I'm not sure how to do that, yet. Give that workaround a shot and see if it solves your issue.
I'm looking into figuring out how to define an input format for the module. There could conceivably be somebody that wants to have the default input filter have no HTML, but want HTML in the calendar. You *could* also remove the check_markup() calls to get the same result, but that is reallllly not recommended, as it could create security holes.
Comments
Comment #1
Se7enLC commentedgcal_events uses the default input format as its filter (a call to check_markup() to make sure illegal or dangerous tags are stripped, to prevent cross-site scripting)
If you have your default input format set to something that does not allow using or
tags, try changing it to allow them and see if that works. It may be possible to set which input format the module should use, but I'm not sure how to do that, yet. Give that workaround a shot and see if it solves your issue.
Comment #2
jfurfey commentedThank you! That did it. I should have thought of that myself.
Comment #3
Se7enLC commentedI'm looking into figuring out how to define an input format for the module. There could conceivably be somebody that wants to have the default input filter have no HTML, but want HTML in the calendar. You *could* also remove the check_markup() calls to get the same result, but that is reallllly not recommended, as it could create security holes.
Comment #4
Se7enLC commentedComment #5
Se7enLC commentedInput format support has been added to the module to address this.