473,789 Members | 2,441 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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)"tex t-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 2608
In our last episode,
<11************ *********@f14g2 000cwb.googlegr oups.com>,
the lovely and talented Viken Karaguesian
broadcast on comp.infosystem s.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****@larseigh ner.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*******@gmai l.com> wrote in message
news:b5******** *************** *********@4ax.c om...
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************ *********@f14g2 000cwb.googlegr oups.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************ *********@f14g2 000cwb.googlegr oups.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)"tex t-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
2157
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 page without knowing HTML - we want to write a real programmer's editor located on a web page in your browser with features like...
2
5227
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 to send HTML email. All HTML editors I found out on the web work for most browsers except Opera. Does any of you guys know of an Opera-friendly editor? That would be great... Thanks,
12
5230
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 style attributes that I don't want to remove.
0
2158
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 you more! www.soft30.com/softdown-160-4268.htm - 33k - 10 Oct 2005 - Cached - Similar pages PHP Editor 2.22 - Soft.com PHP Editor 2.22. ... The PHP Editor have some good features: ... Integration with
2
3183
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 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/html/vbtchTopQuestionsAboutASPNETDataGridServerControl.asp, Selecting Rows by Clicking Anywhere). Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, _ ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) _
1
2020
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 some body know about this system help me in the following problem: My proble Is When I put thefollowing called in the <Head></Head> area as they
5
2814
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 some error related to FrontPage extensions. I couldn't exactly understand the error. I tried to create the project in C: \Inetpub\wwwroot. If I just open a ASP file (by navigating to the File-->Open File... menu), then Interdev doesn't give the...
9
2639
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 Manager just gave me a copy we have here of HS 5.5, same thing, I get same errors as with previous version.. I was wondering, is there a free HTML editor out there similar to HS? I know there must be a lot of them out there, I just want to find...
3
14575
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 capability to save it into special file name and format, for instance if i want to save it to a file with XML extention format like A.xml, wondering if anybody kknows how to do that, if you have any idea please guide me through how to reach to these....
0
9663
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10404
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10136
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9016
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7525
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5415
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5548
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3695
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2906
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.