Search found 6 matches

by webwiz
Tue Jun 24, 2008 8:47 pm
Forum: General
Topic: Unicode display
Replies: 9
Views: 799

Unicode

gan wrote: TP does not fully support unicode Well, that's true. TP uses DBCS internally, and not all Unicode sharacters are supported. But it does well enough for my purposes. I was trying to answer the OP's question about black bars. That's usually an issue with fonts. I'm fairly new to this forum...
by webwiz
Sat Jun 21, 2008 3:37 am
Forum: General
Topic: "Copy as HTML page" produces invalid html
Replies: 1
Views: 363

Re: "Copy as HTML page"

Yes. That code does not look too healthy.

Try this: http://textile.thresholdstate.com/
by webwiz
Sat Jun 21, 2008 3:29 am
Forum: Enhancement Suggestions
Topic: UTF-8
Replies: 11
Views: 2221

Re: UTF8

Works fine for me. No problem in over a year.

Do make sure you use a font that can display the Unicode glyphs though. The default Courier does not. Courier New works for me. YMMV.

BTW - I recommend you do *not* add the Byte-Order Mark (BOM). It is meaningless and can seriously harm your code.
by webwiz
Sat Jun 21, 2008 3:20 am
Forum: General
Topic: Change to Title case
Replies: 5
Views: 451

1. Highlight the text

2. Press Ctrl-Shift-U

... or from the menu: Edit > Change case > Capitalize
by webwiz
Sat Jun 21, 2008 3:13 am
Forum: General
Topic: Search and Mark lines for word matches from a CSV file
Replies: 1
Views: 220

Re: Search and Mark lines for word matches from a CSV file

How big is your CSV file? If it's a one-liner, you could use search-and-replace the commas to convert it to a regex, then use that to mark all lines in the target file. If you want to match whole words, then convert the commas to "\>)|(\<" and add the start and end bits manually. Your resu...
by webwiz
Sat Jun 21, 2008 2:46 am
Forum: General
Topic: Unicode display
Replies: 9
Views: 799

Odd. I have been using UTF8 encoding for a year or so with no problem on TP. Lots of problems with other popular editors though. I would not recommend adding the Byte Order Mark (BOM). As UTF8 is an 8-bit encoding, Byte Order is irrelevant anyway. It just upsets some browsers and is suicide for PHP....