It did not work. The h2 heading still there (with "EDIT" link). The interesting thing is when I replace ALL of the four "!!" I found to "\n \n", the "EDIT" link remained staying at the end of the h2 heading.
Cheers, linly On 2月17日, 上午5時47分, Martin <[email protected]> wrote: > That sedit plugin takes every h2. > To use for line edit you have to mark each line with h2 or another > sign. > > What if you replace !! with other two letters of your choice in here > of the plugin php: > > function s_stripname($text) { > if (substr($text, 0, 2) == '!!') $text = substr($text, 2); > $text = trim($text); > $strip = Array ('!', '"', '#', '$', '%', '&', "'", '(', ')', '*', > '+', ',', '-', '.', '/', ':', ';', '<', '=', '>', '?', '@', '[', '\\', > ']', '^', '`', '{', '|', '}', '~'); > $text = str_replace(' ', '_', $text); > $text = str_replace($strip, '', $text); > return strtolower($text); > } > > Greetings, Martin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "BoltWire" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/boltwire?hl=en -~----------~----~----~----~------~----~------~--~---
