Single line indents?

  • Thread starter Thread starter JethroUK©
  • Start date Start date
J

JethroUK©

If i attempt to indent a single line FP indents the whoooooooooooooole
document

to indent a single line i have to
create line space either the side of my intended indent
indent the line
remove the line spaces either side

i have 90 plain ol text documents to convert and i dont think i'll live long
enough to do it this way :o)

any tips?

(p.s. each line is an instruction that ends in a hard return, so they are
already individual paragraphs & not connected in anyway)
 
Jethro,

If you want to format paragraphs with line indents try
this.

Open your FP web / page.

Place your cursor at the beginning of the first
paragraph, go to Format > Paragraph

From their you can select the alignment, indentation of
the whole paragraph, first line, etc..

To take it one step further, once you have the desired
look, you could create a style sheet and just apply it to
all pages.

Hope it helps,
JDR
************************************
 
JDR said:
Jethro,

If you want to format paragraphs with line indents try
this.

Open your FP web / page.

Place your cursor at the beginning of the first
paragraph, go to Format > Paragraph

i cant apply this since each line is a paragraph in it's own right (every
line/intruction ends with a hard return (the definition of a 'paragraph'))
From their you can select the alignment, indentation of
the whole paragraph, first line, etc..

likewise here
To take it one step further, once you have the desired
look, you could create a style sheet and just apply it to
all pages.

hoping to look into css in new year, but looks like i'll have to do it the
hard way for now - even tried the format painter, F/Page totally ignores it
(i'm pretty new to F.P. but the menus imply it supports same methods as MS
Word/Access/Powerpoint/Excel - but i'm finding out it doesn't at all -
beginning to wonder whether they threw them in for show

thanx anyhow
 
Jethro,

Perhaps you could put a sample page online and then post
the url to the newsgroup. This would allow us to help
you further with a style sheet / rule.

JDR
**********************************
 
In HTML, a carriage return doesn't indicate the end of a
paragraph. Instead, <p> marks the beginning of a
paragraph, and </p> marks the end.

Also, HTML treats any combinations of spaces, tabs,
carriage returns, and lines feeds as one space.

If you switch to HTML view (or, in FP2003, Code view) I
think you'll find your plain text appears as

<pre>
Three things are certain
Death, taxes, and lost data.
Guess which has occurred.
</pre>

where <pre> and </pre> mark a block of text that the
browser should display in a monospaced font, honoring
line breaks and multiple spaces, or

<p>Three things are certain<br>
Death, taxes, and lost data.<br>
Guess which has occurred.</p>

where <p> specifies an ordinary paragraph and <br> forces
a line break.

In both cases, HTML treats the content as one paragraph
containing several line breaks, and not as multiple
paragraphs. That's why, when you indent a paragraph, the
entire block of text gets indented.

I'd like to suggest a fix, but it's really difficult
without seeing the data. All I can say is that somehow,
you need to add HTML paragraph breaks and not rely on
line endings.

There may be some fancy search/replace commands that make
this relatively easy, but figuring them out is going to
be tough if you're new to HTML.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
you're smack on the money there - it's just a shame that FP cant intepret
this as you obviously have and create the appropriate html (i figured that's
what it was for and nothing else :o) - if i do any more in html manually i
might aswell bypass FP all together and write it in notepad :o)

i'm converting a hoard of MS Word docs into html (tryna get them online for
the 5th) - i found that saving the docs as html (or straight copy/paste to
FP) created a enormous mass of overhead, and watermarks, headers, etc got
misinterpreted - so i opted to copy docs to notepad (strip out any format)
then paste the plain text into fp and just apply rudimentary format with
view to creating css sheets later (when i have time to learn how to do
them), but i'm finding even this fundimental formatting a chore in FP :o(

i'm just going to wing it for now to try get the stuff online - thanx very
much
 
As an alternative approach for including cleaner versions of your MS W docs see
http://sbrenjoy.bizland.com/frontpage/word.htm
--




| you're smack on the money there - it's just a shame that FP cant intepret
| this as you obviously have and create the appropriate html (i figured that's
| what it was for and nothing else :o) - if i do any more in html manually i
| might aswell bypass FP all together and write it in notepad :o)
|
| i'm converting a hoard of MS Word docs into html (tryna get them online for
| the 5th) - i found that saving the docs as html (or straight copy/paste to
| FP) created a enormous mass of overhead, and watermarks, headers, etc got
| misinterpreted - so i opted to copy docs to notepad (strip out any format)
| then paste the plain text into fp and just apply rudimentary format with
| view to creating css sheets later (when i have time to learn how to do
| them), but i'm finding even this fundimental formatting a chore in FP :o(
|
| i'm just going to wing it for now to try get the stuff online - thanx very
| much
|
|
| | > In HTML, a carriage return doesn't indicate the end of a
| > paragraph. Instead, <p> marks the beginning of a
| > paragraph, and </p> marks the end.
| >
| > Also, HTML treats any combinations of spaces, tabs,
| > carriage returns, and lines feeds as one space.
| >
| > If you switch to HTML view (or, in FP2003, Code view) I
| > think you'll find your plain text appears as
| >
| > <pre>
| > Three things are certain
| > Death, taxes, and lost data.
| > Guess which has occurred.
| > </pre>
| >
| > where <pre> and </pre> mark a block of text that the
| > browser should display in a monospaced font, honoring
| > line breaks and multiple spaces, or
| >
| > <p>Three things are certain<br>
| > Death, taxes, and lost data.<br>
| > Guess which has occurred.</p>
| >
| > where <p> specifies an ordinary paragraph and <br> forces
| > a line break.
| >
| > In both cases, HTML treats the content as one paragraph
| > containing several line breaks, and not as multiple
| > paragraphs. That's why, when you indent a paragraph, the
| > entire block of text gets indented.
| >
| > I'd like to suggest a fix, but it's really difficult
| > without seeing the data. All I can say is that somehow,
| > you need to add HTML paragraph breaks and not rely on
| > line endings.
| >
| > There may be some fancy search/replace commands that make
| > this relatively easy, but figuring them out is going to
| > be tough if you're new to HTML.
| >
| > Jim Buyens
| > Microsoft FrontPage MVP
| > http://www.interlacken.com
| > Author of:
| > *----------------------------------------------------
| > |\---------------------------------------------------
| > || Microsoft Office FrontPage 2003 Inside Out
| > ||---------------------------------------------------
| > || Web Database Development Step by Step .NET Edition
| > || Microsoft FrontPage Version 2002 Inside Out
| > || Faster Smarter Beginning Programming
| > || (All from Microsoft Press)
| > |/---------------------------------------------------
| > *----------------------------------------------------
| >
| >
| >
| > >-----Original Message-----
| > >If i attempt to indent a single line FP indents the
| > >whoooooooooooooole document
| > >
| > >to indent a single line i have to
| > >create line space either the side of my intended indent
| > > indent the line
| > >remove the line spaces either side
| > >
| > >i have 90 plain ol text documents to convert and i dont
| > >think i'll live long enough to do it this way :o)
| > >
| > >any tips?
| > >
| > >(p.s. each line is an instruction that ends in a hard
| > >return, so they are already individual paragraphs & not
| > >connected in anyway)
| > >
| > >
| > >
| > >.
| > >
|
|
 
thanx - the article seems to describe my situation exactly & the solution
seems to work fine - she will go to the ball :o)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top