How can I indent the first line of a paragraph when posting a new story?

Hi everyone,

I am new to ABCTales, so sorry if this has been answered elsewhere!

I have been advised that making it clear where paragraphs begin can aid in persuading readers to continue reading a story.
So far, though, I haven't been able to find how to indent the first line of each paragraph in the Preview pane when adding a story (apart from putting a line break and thus a white line between each and every paragraph), which I'd rather avoid.
Is there a particular control code (e.g. ^t as in Microsoft Word) or html code that is acceptable when submitting a story. I even tried adding five spaces before the beginning of each paragraph, but to no avail. Can anyone help, please? I have a new story fresh off the fingers which I want to publish here and can't because of this niggle :-)

Many thanks,

Bryan
Northern Greece

Stan | July 13, 2012 - 14:15

Hi Bryan. Welcome to ABC!

I've tried indenting by inserting spaces, but it doesn't seem to work. You can make it clear when a new paragraph starts, though, by just inserting a space - hitting 'return' twice.

...like that! If you cut and paste from Word, as I do, it can be a chore going through to insert spaces between paragraphs - but if you do that when you're typing it in the first place, the spaces will stay. If you then want to insert a 'double-space' - as in when you wish it to be clear that it's a distinct part of the story - it's probably best to just enter a '~' or a row of asterisks...

***

Someone else may know about indenting, if that's what you really want to do. You can always 'preview' your story prior to posting to check what it will look like. You can then edit it... or edit it after posting, whichever.

Look forward to reading your story.

bryanhollamby | July 13, 2012 - 14:40

I have discovered that straightforward html "forced, non-breaking spaces" code works - I just added the html sequence & n b s p ; (without spaces - I added spaces as it would otherwise come out here as an empty space), and it is an ampersand (&) followed immediately (without those gaps) by nbsp (non-breaking space) and immediately afterwards by a semi-colon. I added this five times in a line at the beginning of each paragraph (using Replace in Word) and got a decent indent of five empty spaces before each paragraph in the story.

Thanks again for the help, Stan!

Bryan

FTSE100 | July 13, 2012 - 14:43

It can't be done. All HTML tags, apart from a few that are explicity allowed, are filtered out. Leading spaces are filtered too, as are surplus line breaks. You submit to the system or die!

A single blank line between each paragraph is far easier to read online than a solid block of text with a few indentations.

I use far more paragraph breaks for work to be read online than I would for work to be read from print. Once you get used to it and see how easy it is to read, you'll be converted.

After trying to read other people's work for a while you'll find yourself fuming at people who post solid blocks of text.

bryanhollamby | July 13, 2012 - 15:19

Thanks FTSE100, I'll see how it goes. Old habits die hard, I suppose :-) Non-breaking space html works, from what I see...

FTSE100 | July 13, 2012 - 15:29

You can insert any HTML character entities, including   but don't fight the system! The system is your friend. What's that, Master? Yes, I've told him the system is his friend. No, not the electric eels, Master. Please, no!

bryanhollamby | July 13, 2012 - 15:33

You can read me like a book, FTSE100, I am the eternal independent! I think you have got me sussed :-) I can quite understand blocks of text being difficult to handle, but I am a bit worried about cutting up dialogue with white space between each piece of dialogue... I'd really appreciate any suggestions on that. Maybe a few non-breaking spaces before each side of dialogue to keep it within a paragraph?

Thanks!

Bryan

bryanhollamby | July 13, 2012 - 15:40

Well, faced with electric eels, I'll relent :-)

FTSE100 | July 13, 2012 - 15:43

"I don't find it a problem to have a blank line between each line of dialogue," he asserted to avoid using the word 'said'.

"Ah, but have your tried it in zero-gee?" inquired the Captain scientifically.

"I'm a member of the Million-Mile High Club," said Gumption 17 proudly. "Bugger, I just did a 'said'".

"We aren't schoolboys," retrospondicated the Captain. "For all I care you can do 'said' until your space pants fall down. That was just a test, by the way. They don't fall down in zero-gee."

White Dwarf | July 13, 2012 - 19:44

  • Format: 4!c&nbsp ; _____Example: COMM

White Dwarf | July 13, 2012 - 19:45

    Format: 4!c&nbsp ; _____Example: COMM

White Dwarf | July 13, 2012 - 19:48

    seems the < u l > tag works. I will just test it

over a number of lines...................
kkkkkkkkkkkkkkkkkkkkkkkkk jsjdgsgggggggggggg sssssssss gggggggggggggggggggs ssssssssssssssssssssssssg

White Dwarf | July 13, 2012 - 19:58

Ok nevermind -- none of that worked very well. You're on your own.

White Dwarf | July 13, 2012 - 19:59

ok now i'll try this but it most likel will not workk we can only hope, rightkjhsefwh wflehf woefh aodifhwaoie ghowiqi hegoqi hg

FTSE100 | July 13, 2012 - 21:04

The ordered and unordered lists are fine.

To make an ordered list, this is what you type:

<ol> (this says you want an ordered list)
<li> (this says you are making a new entry in the list)
Booby hatch (this is the text you want as the first entry)
</li> (this says the entry is finished)
<li> (this says you are making a new entry in the list)
Jambalaya sandwiches (this is the text you want as the second entry)
</li> (this says the entry is finished)
<li> (this says you are making a new entry in the list)
Champing at the bit (this is the text you want as the third entry)
</li> (this says the entry is finished)
</ol> (this says the list is finished)

You don't have to put it all in bold, by the way. The result looks like this:

  1. Booby hatch
  2. Jambalaya sandwiches
  3. Champing at the bit

Note that in forum comments you'll get a blank line between each list entry. If you do the same in story posts, there will be no blank line.

For an unordered list (bullet points instead of numbers) just replace ol with ul and /ol with /ul.