I posted this in basic group, but perhaps it belongs here. I notice notetab pro does not generate XHTML 'proper39; code. As a newbie I would like to write what...
6729
Cary Driscoll
eidirsceoil
Jan 3, 2010 12:55 am
I just use html. Even the next standard looks to be HTML 5 rather than XHTML 2. All people are doing when they use xhtml is basically serving mangled html,...
6730
Bruce Meyers
oldguy1166
Jan 3, 2010 1:06 am
 In NTPro -  in the menu at the top click on View, then down to Options, In the Options box, click on HTML Files and you will find a box that says "Create...
6731
loro
yastupidhoo
Jan 3, 2010 1:12 am
... Amen sista! (And now they'll flog us :-P) Anyhow, you can change if Notetab uses HTML or XHTML tags at View | Options |HTML Files --> Create XHTML Tags. ...
6732
Michael Rawley
rawleyatnormist
Jan 3, 2010 1:17 am
Hi Forest, You might find what you are looking for at www.normist.co.uk. Explore the 'Home' menu and you will find a course on web authoring. If you have any...
6733
Axel Berger
absalom_nemini
Jan 3, 2010 3:09 am
... Absolutely not! If xhtml is what you declare and waht you want to write, then correct and conformant xhtml is what you should write. Axel...
6734
Bruce Meyers
oldguy1166
Jan 3, 2010 2:33 pm
Michael,  I copied and pasted  www.normist.co.uk into my browser and got the message that it could not be found. I typed it in directly and still got...
6735
Marty
mbasiszta
Jan 3, 2010 8:41 pm
aaah, all this having been said, I use HTML, CuteFTP and I have no problems. I KISS everyday (Keep It Simple Studip). That is me, not anyone else. Having...
6736
Blaine Clark
roblainethree
Jan 3, 2010 8:45 pm
A couple of good learning sources; http://www.w3schools.com/ http://www.w3.org/standards/webdesign/htmlcss...
6737
Axel Berger
absalom_nemini
Jan 4, 2010 4:31 am
... If you want to see something really nasty then look at what happens in those scripted browser entries to CMSs when people draft in Microsoft Word and copy...
6738
Michael Rawley
rawleyatnormist
Jan 4, 2010 10:39 am
Hi All, Just for fun, I copied a 3 KB html page into Microsoft word (ctrl-C --> ctrl-V) and saved it as a web page. It had stretched to 26 KB with all the junk...
6739
Greg Chapman
gregchapmanuk
Jan 4, 2010 12:00 pm
Hi Michael, ... Thats because when Microsoft discovered HTML they were still thinking that everyone would join MSN their own private network - much like ...
6740
Don - HtmlFixIt.com
dpasseng
Jan 4, 2010 3:41 pm
I like xhtml, it's clean, it makes sense, all tags close. However I think we belong on the html list ... I'll copy this there. Many significant sites are...
6741
Blaine Clark
roblainethree
Jan 4, 2010 9:26 pm
Another word about WORD, for those who use WORD to draft posts for WordPress, then paste the result into a WordPress app; That can cause WordPress to scramble...
6742
ayla_z
Jan 12, 2010 4:14 pm
I have a file with hundred of line items to delete where the ? are in the line below they each have completely different information.. ...
6743
Rudolf Horbas
rhorbas
Jan 12, 2010 4:31 pm
... That's very simple: Edit -> Replace: Search: ^\<li92;>.*help \<\/li\>$ Replace: (Nothing) with Regular Expression checked. The expression above produces a...
6744
Don - HtmlFixIt.com
dpasseng
Jan 12, 2010 4:39 pm
I don't know 4.5 and the regex engine in it ... you MUST upgrade to get regex help. Try replacing: \<li92;>.*help \</li92;> with nothing be sure regex (Regular...
6745
Don - HtmlFixIt.com
dpasseng
Jan 12, 2010 4:42 pm
yes Rudolf did what I planned to do ... if the li is the first and last thing on each line add the ^ at the start and the $ at the end. I hit send before I...
6746
ayla_z
Jan 12, 2010 4:46 pm
I feel foolish, but I do not know what you mean by "with Regular Expression checked" I am using version 4.5 when I use ^\<li92;>.*help \<\/li\>$ it says not...
6747
Don - HtmlFixIt.com
dpasseng
Jan 12, 2010 4:54 pm
are they all on one line? <li>this is all on one line</li> when you hit search and replace look at bottom center of the dialog there is a little box that says...
6748
Don - HtmlFixIt.com
dpasseng
Jan 12, 2010 4:55 pm
if is on more than one line, this will work: (?s)\<li\>.*?help \</li92;> at least it does in later versions of notetab. One of the most significant advances in...
6749
Rudolf Horbas
rhorbas
Jan 12, 2010 5:16 pm
... You'd have to activate the option "Regular Expression" in the search dialog. ... No wonder if the option mentioned above is not checked. I also dind't see...
6750
ayla_z
Jan 12, 2010 5:28 pm
It is not working, need to upgrade as your suggest. Unable to upgrade, no funds til Feb 1st. Will have to do it manually...ugh... THANKS AGAIN!! Ayla...
6751
Axel Berger
absalom_nemini
Jan 12, 2010 5:37 pm
... For what you are trying to achieve, the free version will suffice. I really think the professional version is worth it, but the free one does a lot...
6752
Rudolf Horbas
rhorbas
Jan 12, 2010 6:00 pm
... 4.5 can do what you require, its Regex dialect is just a little outdated, and my knowledge of it a bit rusty. ... Naaah, you don't have to do that. Get the...
6753
ayla_z
Jan 12, 2010 6:03 pm
I forgot abpout the LIGHT version... OK, I downloaded and entered (?s)\<li\>.*?help \</li92;> using regular experession, and it deleted every line item on the...
6754
John Shotsky
shotsky1
Jan 12, 2010 6:51 pm
If there are no line breaks in your lines, you can use this simpler version (because it will not wrap around lines): <li\>.*?help </li\> It is not clear...
6755
John Shotsky
shotsky1
Jan 12, 2010 6:54 pm
In addition to the free version, you can download the Pro version and use it in Trial mode for a month, I believe. Nearly every clip will run on all three...
6756
Rudolf Horbas
rhorbas
Jan 12, 2010 7:08 pm
... I don't know about the (?s) at the beginning; if there are whitespaces, you could also try just a whitespace followed by a "*": " *" which would mean: All...
6757
ayla_z
Jan 12, 2010 7:52 pm
You have all been very helpful. I will now retreat and study all this. Thank you for your assistance. Ayla...