From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "B. T. Raven" Newsgroups: gmane.emacs.help Subject: Re: html editing Date: Fri, 26 Feb 2010 15:55:12 -0600 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1267224127 22711 80.91.229.12 (26 Feb 2010 22:42:07 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 26 Feb 2010 22:42:07 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Feb 26 23:42:03 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Nl8sZ-0004GQ-OP for geh-help-gnu-emacs@m.gmane.org; Fri, 26 Feb 2010 23:41:52 +0100 Original-Received: from localhost ([127.0.0.1]:49563 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nl8sY-0006Vi-Mb for geh-help-gnu-emacs@m.gmane.org; Fri, 26 Feb 2010 17:41:50 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!postnews.google.com!news1.google.com!Xl.tags.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local2.nntp.dca.giganews.com!nntp.bright.net!news.bright.net.POSTED!not-for-mail Original-NNTP-Posting-Date: Fri, 26 Feb 2010 15:55:05 -0600 User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) Original-Newsgroups: gnu.emacs.help In-Reply-To: X-No-Archive: yes Original-Lines: 40 X-Usenet-Provider: http://www.giganews.com Original-NNTP-Posting-Host: 64.61.220.107 Original-X-Trace: sv3-vXzZA/dEB8rC8jkCFBA36PdQQO3Nso3QyCJBt6x2+MihyoQuw9tLEZB0tgx5J0ts9CqYO0vNiKowJie!0a1PeARCKSqe430OPiJj9PzirxM8d3xPidp9V4hfUjIKipcWpWDnC+ZMLPr48bUzVMeT8+3NE2Sw!2UDNk2xZeA== X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.40 Original-Xref: news.stanford.edu gnu.emacs.help:177139 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org X-Gmane-Expiry: 2010-03-12 Xref: news.gmane.org gmane.emacs.help:72174 Archived-At: Daniel Dalton wrote: > Hi all, > > Here is my situation: > I'm blind and doing a unit on web design, which I must complete. I'm > generating html pages. Currently I type all the code out by hand. My > fellow class mates are using gui front ends such as dream weaver on > windows. > > So, for generating tables, changing fonts, and I guess for repetitive > html tasks, what tools can I use to speed up the process? Perhaps there > are tools that are available to save me so much typing...? > > Thanks! > Dan > > > There are also html-mode and html-helper-mode which add sections to the menu (html, sgml, etc.) Both insert html tags, headers, lists, etc. and position the cursor appropriately. I have this in my .emacs: (autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t) (setq auto-mode-alist (cons '("\\.html$" . html-helper-mode) auto-mode-alist)) (setq html-helper-build-new-buffer t) Since I don't really use html much, I don't remember where all this came from. Html-helper-mode might not be part of Emacs (I have it in the site-lisp directory) but it can be downloaded here: http://www.emacswiki.org/emacs/HtmlHelperMode Ed