From ddascalescu at gmail.com Wed Aug 5 02:26:42 2009 From: ddascalescu at gmail.com (Dan Dascalescu) Date: Tue, 4 Aug 2009 23:26:42 -0700 Subject: No way to indent text? Message-ID: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> How could one indent (not quote) a block of text? This is commonly done in Wikipedia with one or more colons at the beginning of the line, and is very handy for threaded discussions. An example is at http://en.wikipedia.org/w/index.php?title=Wikipedia:Articles_for_deletion/MojoMojo&diff=next&oldid=275101911 -- Dan Dascalescu http://wiki.dandascalescu.com From joehall at gmail.com Wed Aug 5 05:47:35 2009 From: joehall at gmail.com (Joseph Lorenzo Hall) Date: Wed, 5 Aug 2009 05:47:35 -0400 Subject: No way to indent text? In-Reply-To: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> References: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> Message-ID: <928946aa0908050247p1504651dt66ccb95b26b844ef@mail.gmail.com> This isn't something done in standard HTML, so Markdown doesn't do it (I believe). best, Joe On Wednesday, August 5, 2009, Dan Dascalescu wrote: > How could one indent (not quote) a block of text? > > This is commonly done in Wikipedia with one or more colons at the > beginning of the line, and is very handy for threaded discussions. > > An example is at > http://en.wikipedia.org/w/index.php?title=Wikipedia:Articles_for_deletion/MojoMojo&diff=next&oldid=275101911 > > -- > Dan Dascalescu > http://wiki.dandascalescu.com > _______________________________________________ > Markdown-Discuss mailing list > Markdown-Discuss at six.pairlist.net > http://six.pairlist.net/mailman/listinfo/markdown-discuss > -- Joseph Lorenzo Hall ACCURATE Postdoctoral Research Associate UC Berkeley School of Information Princeton Center for Information Technology Policy http://josephhall.org/ From mail at milianw.de Wed Aug 5 06:35:16 2009 From: mail at milianw.de (Milian Wolff) Date: Wed, 05 Aug 2009 12:35:16 +0200 Subject: No way to indent text? In-Reply-To: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> References: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> Message-ID: <4A796064.1010203@milianw.de> Dan Dascalescu wrote: > How could one indent (not quote) a block of text? > > This is commonly done in Wikipedia with one or more colons at the > beginning of the line, and is very handy for threaded discussions. > > An example is at > http://en.wikipedia.org/w/index.php?title=Wikipedia:Articles_for_deletion/MojoMojo&diff=next&oldid=275101911 You have to think semtically: Why do you want to indent it? I bet because it's some kind of quote. Hence use blockquote syntax of Markdown. Just start each line with a ">" like in email-quotes. The default style for blockquote is indenting it afair. -- Milian Wolff http://milianw.de From tim.visher at gmail.com Wed Aug 5 07:42:04 2009 From: tim.visher at gmail.com (Tim Visher) Date: Wed, 5 Aug 2009 07:42:04 -0400 Subject: No way to indent text? In-Reply-To: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> References: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> Message-ID: Hi Dan, On Wed, Aug 5, 2009 at 2:26 AM, Dan Dascalescu wrote: > How could one indent (not quote) a block of text? > > This is commonly done in Wikipedia with one or more colons at the > beginning of the line, and is very handy for threaded discussions. > > An example is at > http://en.wikipedia.org/w/index.php?title=Wikipedia:Articles_for_deletion/MojoMojo&diff=next&oldid=275101911 As others said, this is non-standard for (X)HTML except for certain elements like `blockquote`. You could use inline styles but then you'd have to drop back to straight (X)HTML rather than the simpler Markdown syntax. For instance, were you to desire to indent a paragraph, markdown will correctly allow you to do the following:

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

I think that's your only option directly within Markdown. -- In Christ, Timmy V. http://burningones.com/ http://five.sentenc.es/ - Spend less time on e-mail From michel.fortin at michelf.com Wed Aug 5 08:02:31 2009 From: michel.fortin at michelf.com (Michel Fortin) Date: Wed, 05 Aug 2009 08:02:31 -0400 Subject: No way to indent text? In-Reply-To: References: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> Message-ID: <2CD6BF30-90FF-4087-B329-DB9F4E3199E8@michelf.com> Le 2009-08-05 ? 7:42, Tim Visher a ?crit : > As others said, this is non-standard for (X)HTML except for certain > elements like `blockquote`. You could use inline styles but then > you'd have to drop back to straight (X)HTML rather than the simpler > Markdown syntax. > > For instance, were you to desire to indent a paragraph, markdown will > correctly allow you to do the following: > >

Lorem ipsum dolor sit amet, > consectetur > adipisicing elit, sed do eiusmod tempor incididunt ut labore et > dolore magna > aliqua. Ut enim ad minim veniam, quis nostrud exercitation > ullamco laboris > nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in > reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla > pariatur. Excepteur sint occaecat cupidatat non proident, sunt in > culpa qui > officia deserunt mollit anim id est laborum.

> > I think that's your only option directly within Markdown. Indeed it is. The big drawback here is that Markdown formatting isn't applied in an HTML block like the example above. Some parsers, like PHP Markdown Extra, allow you to activate markdown formatting within the paragraph by adding a `markdown="1"` attribute to the `p` tag. -- Michel Fortin michel.fortin at michelf.com http://michelf.com/ From fletcher at fletcherpenney.net Wed Aug 5 08:21:06 2009 From: fletcher at fletcherpenney.net (Fletcher T. Penney) Date: Wed, 5 Aug 2009 08:21:06 -0400 Subject: No way to indent text? In-Reply-To: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> References: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> Message-ID: It appears that this page is using an unordered list to do the indenting. That is easily done within Markdown syntax. F- On Wed, Aug 5, 2009 at 2:26 AM, Dan Dascalescu wrote: > How could one indent (not quote) a block of text? > > This is commonly done in Wikipedia with one or more colons at the > beginning of the line, and is very handy for threaded discussions. > > An example is at > http://en.wikipedia.org/w/index.php?title=Wikipedia:Articles_for_deletion/MojoMojo&diff=next&oldid=275101911 > > -- > Dan Dascalescu > http://wiki.dandascalescu.com > _______________________________________________ > Markdown-Discuss mailing list > Markdown-Discuss at six.pairlist.net > http://six.pairlist.net/mailman/listinfo/markdown-discuss > -- Fletcher T. Penney fletcher at fletcherpenney.net From sgbotsford at gmail.com Wed Aug 5 10:01:17 2009 From: sgbotsford at gmail.com (Sherwood Botsford) Date: Wed, 5 Aug 2009 08:01:17 -0600 Subject: No way to indent text? In-Reply-To: References: <3561cc6d0908042326j34319e38wc333e41e3a0743d5@mail.gmail.com> Message-ID: <534004cc0908050701q65df7504v39328b22ac092b09@mail.gmail.com>