Demidov Andrey <[email protected]> was heard to say: > "[[Link1][Some one]] > [[Link2][Some two]] > > [[Link3][Some three]]" > > And I have got this html-code: > > " > <p><a href="Link1.html">line one</a> > <a href="Link2.html">line two</a></p> > > <p><a href="Link3.html">line three</a></p> > " >
Maybe I don't understand in full what you are trying to achieve. If the empty line between the links does what you need, why don't you just insert blank lines? This is, to the best of my knowledge, the recommended way to tell Muse that you need a line break right there. > 2. I have already the big document's and I need to modify all of them to add > <br>-tag. Is the any possibility to generate <br>-tag to each line break in > emacs ? > It depends on the number of documents whether or not you want to do this in Emacs. If you want to do this on a large number of files, consider using sed instead. In any case, if you want to replace *all* line breaks with double line breaks (to get empty lines) or with a line break followed by a <br> tag in a single Emacs document, do something like this: M-% C-Q C-J Ret C-Q C-J C-Q C-J Ret (untested, off the top of my head). Replace the second C-Q C-J with <br> if you need that tag instead of an empty line. regards Markus -- Markus Hoenicka http://www.mhoenicka.de AQ score 38 _______________________________________________ Muse-el-discuss mailing list [email protected] https://mail.gna.org/listinfo/muse-el-discuss
