473,405 Members | 2,310 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Which editor do you use to write HTML?

Hello everyone,

I'm just wondering what you all use to write and edit your HTML and
organize your websites. I currently use Microsoft Frontpage 2003. Hold
on! Before you all jump on me for using a Microsoft product, hear me
out! :>) Where I used to use Frontpage in WYSISYG mode, I have
completely forgone that and now use it in text edit mode. It's actually
a pretty powerful html editor.

There are certain features that Frontpage has that I really like and am
wondering if there are other editors that will do the same thing as
well or better than Frontpage. Here are some features that I like:

1) Color coded editing: HTML tags have a different color (purple). So
do attributes (red) and their text (blue). So <p style="text-align:
left"> would look like: <p (purple) style=(red)"text-align: left">
(blue).If you mis-type or forget a quotation, all the colors change to
"mistake" mode (all red), providing an easy visual that something is
wrong.

2) Keystoke based code snippets: By pressing CTRL-ENTER, I can easily
insert snippets of frequently used code (like Doctype declarations) to
save typing time.

3) Tag finders/selectors: If I think I have a wayward start or end tag
and can choose that tag and select "find matching tag". Same goes with
braces, etc.

4) I can use the Microsoft "Find/Replace" feature to change/replace/add
sections of code to multiple pages at a time. For instance, if I wanted
to replace my Transitonal Doctype with the Strict Doctype throughout
the whole website, I can use Find/Replace to change it in all the
pages, just selected pages, or just the open pages. If I wanted to
change <div class="today"> to <div class="tomorrow">, I can use
Find/Replace to replace that code throughout the site.

5) Site management tools: Frontpage keeps track of all the
files/hyperlinks and website structure. If I change a file name, it
will let me know how many pages are linked to that file and ask if I
want to update the links with the new file name. It will do the same if
I move the file to a new folder.

6) Visual, flow-chart style view of the website so you can see how the
site is layed out and how it flows.

7) Built-in FTP feature that will upload for your. Keeps track of
changes and gives you the option of only uploading changed files.
Compares local copy with published copy and tells you of any
mismatches.

Those are some of the features that I like. What other HTML editors or
site-management suites do the same types of things? What do you all
use? I'm wondering if what else there is out there (besides Macromedia
Dream Weaver) that I may possibly switch to?

Looking forward to hearing from you all...

Viken K.

Dec 9 '05 #1
6 2587
In our last episode,
<11*********************@f14g2000cwb.googlegroups. com>,
the lovely and talented Viken Karaguesian
broadcast on comp.infosystems.www.authoring.html:
Hello everyone, I'm just wondering what you all use to write and edit your HTML


Joe, tricked out with a number of macros to do tags and send
things through tidy and nsgmls whenever advisable. I do most
eveything with php cli, and joe does that as well with a logical
(and configurable) relation between the syntax coloring in both.
Generally I use lynx as my file manager, so it easy to view a
file as html and edit it with joe as the lynx editor. There are
two tiny annoyances with lynx - it converts all tags in view
source (but not in the file) to uppercase, and it doesn't have
an intuitive copy command, but in fact you can make one by using
the "download" screen.

I haven't actually done it yet, but the next step is to give joe
macros to run files through php cli.

--
Lars Eighner us****@larseighner.com http://www.larseighner.com/
War on Terrorism: Bad News from the Sanity Front
"There's one thing ... that I do like about Rumsfeld, he's just a little bit
crazy, OK"? --Thomas Friedman, _The New York Times_
Dec 10 '05 #2
On 9 Dec 2005 07:32:57 -0800, "Viken Karaguesian" <vi****@aol.com>
wrote:
I'm just wondering what you all use to write and edit your HTML and
organize your websites.


Hey Viken. I use NoteTab Pro for everything, except FTP, with which I
use WS_FTP Pro. NoteTab is a wonderful text editor:

http://www.notetab.com/

I couldn't even begin to list all the things it does, though syntax
highlighting is one of them. Their global search and replace is
excellent. It takes less than a minute to replace something in 2500 or
so files, as I've had to do. A few files is instantaneous. It has HTML
TIdy built in, as well as an interesting macro language in which you
write "clips" that automate certain tasks. The tabbed interface is
nice, too. So is the small footprint.

The main thing with any text editor is that it won't mess with your
code. Some of them are more robust than NoteTab, like JEdit, but I
found I didn't like what JEdit offered, and the plug-in system was
confusing. I generally don't like programs written in Java anyway, but
you didn't hear that from me. :-)

Ian
--
http://www.bookstacks.org/
Dec 10 '05 #3
Thanks for the suggestion, Ian. I'll have to check out NoteTab.

--

"Ian Rastall" <id*******@gmail.com> wrote in message
news:b5********************************@4ax.com...
On 9 Dec 2005 07:32:57 -0800, "Viken Karaguesian" <vi****@aol.com>
wrote:
I'm just wondering what you all use to write and edit your HTML and
organize your websites.


Hey Viken. I use NoteTab Pro for everything, except FTP, with which I
use WS_FTP Pro. NoteTab is a wonderful text editor:

http://www.notetab.com/

I couldn't even begin to list all the things it does, though syntax
highlighting is one of them. Their global search and replace is
excellent. It takes less than a minute to replace something in 2500 or
so files, as I've had to do. A few files is instantaneous. It has HTML
TIdy built in, as well as an interesting macro language in which you
write "clips" that automate certain tasks. The tabbed interface is
nice, too. So is the small footprint.

The main thing with any text editor is that it won't mess with your
code. Some of them are more robust than NoteTab, like JEdit, but I
found I didn't like what JEdit offered, and the plug-in system was
confusing. I generally don't like programs written in Java anyway, but
you didn't hear that from me. :-)

Ian
--
http://www.bookstacks.org/

Dec 11 '05 #4
In message <11*********************@f14g2000cwb.googlegroups. com>, Viken
Karaguesian <vi****@aol.com> writes
Hello everyone,

I'm just wondering what you all use to write and edit your HTML and
organize your websites.


I use HTMLValidator, try it out free here

http://www.siliconglen.com/usability/

--
Craig Cockburn ("coburn"). http://www.SiliconGlen.com/
Home to the first online guide to Scotland, founded 1994.
Scottish FAQ, weddings, website design, stop spam and more!
Dec 11 '05 #5
Viken Karaguesian wrote:
Hello everyone,

I'm just wondering what you all use to write and edit your HTML and
organize your websites. I currently use Microsoft Frontpage 2003. Hold
on! Before you all jump on me for using a Microsoft product, hear me
out! :>) Where I used to use Frontpage in WYSISYG mode, I have
completely forgone that and now use it in text edit mode. It's actually
a pretty powerful html editor.


Crimson Editor (http://www.crimsoneditor.com) it's free, and has a
variety of user-definable syntax highlighting & such features. It comes
with default definitions for HTML, PHP, JavaScript, and a bunch of
others, and you can modify them as you need.

It's also freeware.

Dec 12 '05 #6
saz
In article <11*********************@f14g2000cwb.googlegroups. com>,
vi****@aol.com says...
Hello everyone,

I'm just wondering what you all use to write and edit your HTML and
organize your websites. I currently use Microsoft Frontpage 2003. Hold
on! Before you all jump on me for using a Microsoft product, hear me
out! :>) Where I used to use Frontpage in WYSISYG mode, I have
completely forgone that and now use it in text edit mode. It's actually
a pretty powerful html editor.

There are certain features that Frontpage has that I really like and am
wondering if there are other editors that will do the same thing as
well or better than Frontpage. Here are some features that I like:

1) Color coded editing: HTML tags have a different color (purple). So
do attributes (red) and their text (blue). So <p style="text-align:
left"> would look like: <p (purple) style=(red)"text-align: left">
(blue).If you mis-type or forget a quotation, all the colors change to
"mistake" mode (all red), providing an easy visual that something is
wrong.

2) Keystoke based code snippets: By pressing CTRL-ENTER, I can easily
insert snippets of frequently used code (like Doctype declarations) to
save typing time.

3) Tag finders/selectors: If I think I have a wayward start or end tag
and can choose that tag and select "find matching tag". Same goes with
braces, etc.

4) I can use the Microsoft "Find/Replace" feature to change/replace/add
sections of code to multiple pages at a time. For instance, if I wanted
to replace my Transitonal Doctype with the Strict Doctype throughout
the whole website, I can use Find/Replace to change it in all the
pages, just selected pages, or just the open pages. If I wanted to
change <div class="today"> to <div class="tomorrow">, I can use
Find/Replace to replace that code throughout the site.

5) Site management tools: Frontpage keeps track of all the
files/hyperlinks and website structure. If I change a file name, it
will let me know how many pages are linked to that file and ask if I
want to update the links with the new file name. It will do the same if
I move the file to a new folder.

6) Visual, flow-chart style view of the website so you can see how the
site is layed out and how it flows.

7) Built-in FTP feature that will upload for your. Keeps track of
changes and gives you the option of only uploading changed files.
Compares local copy with published copy and tells you of any
mismatches.

Those are some of the features that I like. What other HTML editors or
site-management suites do the same types of things? What do you all
use? I'm wondering if what else there is out there (besides Macromedia
Dream Weaver) that I may possibly switch to?

Looking forward to hearing from you all...

Viken K.

I would strongly recommend HTML-Kit at www.chami.com. Free, fully
configurable with an amazing number of plug-ins for any purpose.
Dec 12 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
by: Christoph Bergmann | last post by:
Hi... We want to write an open source web based TEXT editor and would be happy about any help ;-) Please notice: We do NOT want to write a web based WEB editor, where you can edit a web...
2
by: Charles | last post by:
Hi folks, I am desperatly looking for a WYSIWYG HTML editor for a textarea, using JavaScript and that'll work with Opera. I want this editor to use for a webmail program in PHP, and allow users...
12
by: Oberon | last post by:
I have a large HTML document. It has hundreds of <span>s which have no attributes so these <span>s are redundant. How can I remove these tags automatically? The document also has <span>s with...
0
by: 356523600 | last post by:
HTML To PHP Converter 4.2.1.8 Free download Get more for less ... HTML To PHP Converter 4.2.1.8 Get more for less! With a new version of HTML To PHP Converter 4, we've dropped the price and given...
2
by: Daniel Walzenbach | last post by:
Hi, I created an ASP.NET Datagrid where a single row can be selected by clicking anywhere on the row (according to...
1
by: Husam | last post by:
Hi EveryBody: I want to made an e-mail system by using asp.net web application in Vb.Net 2003, I found something of What uou see is what you get editor system that called html area, I hope if...
5
by: rn5a | last post by:
Can someone please suggest me a text editor especially for DEBUGGING ASP scripts apart from Microsoft Visual Interdev? I tried using Visual Interdev & created a project but Interdev generates...
9
by: maya | last post by:
hi, I'm getting sick and tired of all the problems I've been having w/HomeSite, it crashes all the time, I get these weird errors with code-nos. on them, etc.. it's just not very stable.. my...
3
by: danesh1354 | last post by:
Hi All, First I need to construct a text editor by python programming and add this code to a biger code that has been written before, and i would like that by my code for this editor have a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.