* Re: how do I make html-mode break on <br> tags? [not found] <bqrhxahv.fsf@cfl.rr.com> @ 2006-07-23 8:42 ` Andreas Roehler [not found] ` <y7uk0wxq.fsf@cfl.rr.com> 0 siblings, 1 reply; 4+ messages in thread From: Andreas Roehler @ 2006-07-23 8:42 UTC (permalink / raw) Gene Cash wrote: > How the hell do I get html-mode to break on <br> tags? > > I've dicked around with paragraph-start and paragraph-separate > for hours with no luck. The docs don't explain anywhere how the > fill algorithm decides to break paragraphs. > > I'd like > > <br>blah blah blah blah<br>blah blah blah blah<br>blah blah > blah blah<br> > > to turn into: > > <br> > blah blah blah blah<br> > blah blah blah blah<br> > blah blah blah blah<br> > > when I hit M-q > > -gc > > ;; Don't no, if it's the best way, just one. (defun newline-after-html-break () "Insert a newline after any <br> in html source code" (interactive "*") (save-excursion (goto-char (point-min)) (while (re-search-forward "<br>" nil 'move 1) (replace-match "<br>\n")))) (define-key html32-mode-map (kbd "M-q") 'newline-after-html-break) ;; Tried this, but it doesn't work. Any ideas? ;; (defun set-paragraph-function () ;; " " ;; (interactive) ;; (if (eq major-mode 'html32-mode) ;; (setq fill-paragraph-function 'newline-after-html-break))) __ Andreas Roehler ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <y7uk0wxq.fsf@cfl.rr.com>]
* Re: how do I make html-mode break on <br> tags? [not found] ` <y7uk0wxq.fsf@cfl.rr.com> @ 2006-07-23 23:11 ` Jay Belanger 2006-07-24 7:48 ` Andreas Roehler [not found] ` <mzayzh4c.fsf@cfl.rr.com> 0 siblings, 2 replies; 4+ messages in thread From: Jay Belanger @ 2006-07-23 23:11 UTC (permalink / raw) Cc: belanger Gene Cash <gcash@cfl.rr.com> writes: ... > Andreas Roehler <andreas.roehler@online.de> writes: ... > HAHAHA! Ya kill me! Now that's funny. Did you even read my post? No need to be rude; Andreas was being nice and at least offered a partial solution. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: how do I make html-mode break on <br> tags? 2006-07-23 23:11 ` Jay Belanger @ 2006-07-24 7:48 ` Andreas Roehler [not found] ` <mzayzh4c.fsf@cfl.rr.com> 1 sibling, 0 replies; 4+ messages in thread From: Andreas Roehler @ 2006-07-24 7:48 UTC (permalink / raw) Jay Belanger wrote: > > Gene Cash <gcash@cfl.rr.com> writes: > ... >> Andreas Roehler <andreas.roehler@online.de> writes: > ... >> HAHAHA! Ya kill me! Now that's funny. Did you even read my >> post? > > No need to be rude; Andreas was being nice and at least offered > a partial solution. Thanks. As the questions themselves seems worthwhile responding: Commands `mark-paragraph' and `narrow-to-region' exists already. Nothing to be written so far. ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <mzayzh4c.fsf@cfl.rr.com>]
* Re: how do I make html-mode break on <br> tags? [not found] ` <mzayzh4c.fsf@cfl.rr.com> @ 2006-07-25 13:03 ` Chris McMahan 0 siblings, 0 replies; 4+ messages in thread From: Chris McMahan @ 2006-07-25 13:03 UTC (permalink / raw) Gene, I would concur with Andreas, use replace-string or read the manual. Help from this group is not to be assumed when you have an attitude like yours. - Chris Gene Cash <gcash@cfl.rr.com> writes: > Jay Belanger <belanger@truman.edu> writes: > >> Gene Cash <gcash@cfl.rr.com> writes: >> ... >> > Andreas Roehler <andreas.roehler@online.de> writes: >> ... >> > HAHAHA! Ya kill me! Now that's funny. Did you even read my post? >> >> No need to be rude; Andreas was being nice and at least offered a >> partial solution. > > Not really... I can already do replace-string <br> <br>/n > > I want to take advantage of the intelligent paragraph flowing that's > obviously already there, except the docs are so obtuse it's impossible > to use. And now at least I know nobody else understands them either. > > -gc > > -- > Yip yip yip yip yap yap yip *BANG* --- NO TERRIER -- (. .) =ooO=(_)=Ooo===================================== Chris McMahan | first_initiallastname@one.dot.net ================================================= ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-07-25 13:03 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <bqrhxahv.fsf@cfl.rr.com> 2006-07-23 8:42 ` how do I make html-mode break on <br> tags? Andreas Roehler [not found] ` <y7uk0wxq.fsf@cfl.rr.com> 2006-07-23 23:11 ` Jay Belanger 2006-07-24 7:48 ` Andreas Roehler [not found] ` <mzayzh4c.fsf@cfl.rr.com> 2006-07-25 13:03 ` Chris McMahan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).