Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Transmogrifier
Transmogrifier
0
Comments
The latest upgrade of the "Post Preview" extension makes it also fully compatible with Transmogrifier, which makes it a bonus! :-)
Ever since I installed it, though, there has been a couple of problems with Transmogrifier, which I keep on hoping will eventually be solved:
1) Transmogrifier does not apply its 'magic' to the titles of discussions - so when users start a new discussion, if the title has an accented character, I must go in as 'admin' and manually change the title directly. It would, of course, be fantastic if Transmogrifier could also transmogrify those titles.
2) Transmogrifier does not apply its magic to the content of pages created with the "Page Manager" add on. Again, that would be a wonderful addition to this already excellent extension to Vanilla!
Please, Bergamot, keep up the good work! - It is very, very much appreciated! :-)
You can see its magic at work in our forum here. To see how I've got it setup, have a look at the FAQs, under "Typing Esperanto Accents".
del {color:red !important;}
Transmogrifier & PreviewPost Extension # 3
Transmogrifier & PreviewPost Extension # 7
Do you know if it would be very difficult to change it, to fix the 2 problems mentioned in the above comment?
hrm, doing the same thing on my install. not sure why.
use that
Since Transmogrifier will be skip any line that contain '#'.
You have two ways to fix it.
The easiest way, just change '#0000FF' to 'blue' ==> ==
The second way, change line 39 in default.php
if($line == "" || $line == "\n" || strstr($line,"#"))
byif($line == "" || $line == "\n" || strstr($line,"##"))
and add more '#' in the config.txt 's comment (or just remove any comment :P).@kaon
just change line 45 in default.php:
$this->token[$counter] = '/'.preg_quote($value[0]).'/';
to$this->token[$counter] = '/'.preg_quote($value[0]).'/i';