2
Only alteration i could see being done to it is this line in the keyword stuff to replace the search and remove function with a writable text file which would be
Quote:
$search = array(' with ', ' and ', ' the ', ' there ', ' their ', ' they\'re ', ' are ', ' to ', ' when ', ' on ', ' by ', ' you ',' ','.','','"',';',':','}','{','[',']','|','\\','/','=','+','-','_',')','(','*','&','^','%','$','#','@','!','~','`');
to something like
Quote:
$search = explode("\n", str_replace(array("\R\n", "\n\r", "\n\n", "\n\n\n"), "\n", file_get_contents(__DIR__ . "/search-replace.txt")));
You would have to create
/themes/complexity/xotpl/search-replace.txt that contains for example the following data seperated by a line~feed.
Quote:
with
and
the
there
their
they\'re
are
to
when
on
by
you
.
,
"
'
;
:
<
>
}
{
[
]
|
\
/
=
+
-
_
)
(
*
&
^
%
$
#
@
!
~
`