Created
January 28, 2013 11:43
-
-
Save smichaelsen/4654874 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This snippet is made to reprodue the following bug: | |
# http://forge.typo3.org/issues/44879 | |
lib.blockquoteoutput = TEXT | |
lib.blockquoteoutput { | |
value = Never trust quotes on the internet, they might be fake. - Abraham Lincoln | |
stdWrap.wrap = <blockquote class="myclass">|</blockquote> | |
parseFunc < lib.parseFunc_RTE | |
} | |
# Expected Output: | |
# <blockquote class="myclass">Never trust quotes on the internet, they might be fake. - Abraham Lincoln</blockquote> | |
# | |
# Actual Output: | |
# <blockquote style="margin-bottom:0;margin-top:0;">Never trust quotes on the internet, they might be fake. - Abraham Lincoln</blockquote> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment