Search found 5 matches

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

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 ...
by webwiz
Sat Jun 21, 2008 3:37 am
Forum: General
Topic: "Copy as HTML page" produces invalid html
Replies: 1
Views: 461

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:20 am
Forum: General
Topic: Change to Title case
Replies: 5
Views: 997

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: 331

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 result should ...
by webwiz
Sat Jun 21, 2008 2:46 am
Forum: General
Topic: Unicode display
Replies: 9
Views: 1174

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 ...