Browse Source

A unicode fix and a quick stub for strip_code()

tags/v0.1
Ben Kurtovic 11 years ago
parent
commit
83c5e3c9ec
2 changed files with 5 additions and 4 deletions
  1. +1
    -1
      mwparserfromhell/string_mixin.py
  2. +4
    -3
      mwparserfromhell/wikicode.py

+ 1
- 1
mwparserfromhell/string_mixin.py View File

@@ -27,7 +27,7 @@ class StringMixIn(object):
return unicode(self).encode("utf8")

def __repr__(self):
return repr(unicode(self).encode("utf8"))
return repr(unicode(self))

def __lt__(self, other):
if isinstance(other, unicodeingMixin):


+ 4
- 3
mwparserfromhell/wikicode.py View File

@@ -20,6 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

import htmlentitydefs
import re

import mwparserfromhell
@@ -182,9 +183,9 @@ class Wikicode(StringMixIn):
def filter_text(self, recursive=False, matches=None, flags=FLAGS):
return list(self.ifilter_text(recursive, matches, flags))

def normalize(self):
## Create a deep copy of self ##
return normalized
def strip_code(self, normalize=True):
# Magic with htmlentitydefs if normalize
return normalized(u" ".join(self.ifilter_text()))

def show_tree(self):
marker = object() # Random object we can find with certainty in a list


Loading…
Cancel
Save