* block with different formatting per line?
@ 2013-02-01 23:16 Ingo Hohmann
2013-02-03 3:56 ` Rogers, Michael K
2013-02-06 19:21 ` Bill Meahan
0 siblings, 2 replies; 10+ messages in thread
From: Ingo Hohmann @ 2013-02-01 23:16 UTC (permalink / raw)
To: mailing list for ConTeXt users
Hi,
is it possible to define a block, where lines are automatically
formatted differently?
For example:
first line in caps,
second in bold,
others normal.
Is this possible? And how?
Kind regards,
Ingo
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: block with different formatting per line?
2013-02-01 23:16 block with different formatting per line? Ingo Hohmann
@ 2013-02-03 3:56 ` Rogers, Michael K
2013-02-04 15:16 ` Ingo Hohmann
2013-02-06 6:04 ` Ingo Hohmann
2013-02-06 19:21 ` Bill Meahan
1 sibling, 2 replies; 10+ messages in thread
From: Rogers, Michael K @ 2013-02-03 3:56 UTC (permalink / raw)
To: mailing list for ConTeXt users
On Feb 1, 2013, at 6:16 PM, Ingo Hohmann <context@ingohohmann.de> wrote:
> Hi,
>
> is it possible to define a block, where lines are automatically formatted differently?
> For example:
> first line in caps,
> second in bold,
> others normal.
>
> Is this possible? And how?
If you mean input lines, then yes. But if you mean output lines, then I don't know. It seems a well-defined task, but a hard task judging by how the line-breaking algorithm is described by Knuth. I'll leave that question to experts.
Here's a way to process the input lines. If there's a counter that counts the line number, there would be another way; but I couldn't find out that there was a counter. There may be better ways anyway.
\define\FirstLine{\let\myLine\SecondLine\sc}
\define\SecondLine{\let\myLine\OtherLine\bf}
\define\OtherLine{\tf}
\definelines[doMyLines][command=\myLine]
\def\startMyLines{\let\myLine\FirstLine\startdoMyLines}
\def\stopMyLines{\stopdoMyLines}
\starttext
\startMyLines
First line in caps,
Second in bold,
Others normal.
Others normal.
Others normal.
\stopMyLines
And again:
\startMyLines
First line in caps,
Second in bold,
Others normal.
Others normal.
Others normal.
\stopMyLines
\stoptext
Michael
________________________________
This e-mail message (including any attachments) is for the sole use of
the intended recipient(s) and may contain confidential and privileged
information. If the reader of this message is not the intended
recipient, you are hereby notified that any dissemination, distribution
or copying of this message (including any attachments) is strictly
prohibited.
If you have received this message in error, please contact
the sender by reply e-mail message and destroy all copies of the
original message (including attachments).
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: block with different formatting per line?
2013-02-03 3:56 ` Rogers, Michael K
@ 2013-02-04 15:16 ` Ingo Hohmann
2013-02-06 6:04 ` Ingo Hohmann
1 sibling, 0 replies; 10+ messages in thread
From: Ingo Hohmann @ 2013-02-04 15:16 UTC (permalink / raw)
To: mailing list for ConTeXt users
On 02/03/2013 04:56 AM, Rogers, Michael K wrote:
> On Feb 1, 2013, at 6:16 PM, Ingo Hohmann <context@ingohohmann.de> wrote:
>
>> Hi,
>>
>> is it possible to define a block, where lines are automatically formatted differently?
>> For example:
>> first line in caps,
>> second in bold,
>> others normal.
>>
>> Is this possible? And how?
> If you mean input lines, then yes. But if you mean output lines, then I don't know. It seems a well-defined task, but a hard task judging by how the line-breaking algorithm is described by Knuth. I'll leave that question to experts.
>
> Here's a way to process the input lines. If there's a counter that counts the line number, there would be another way; but I couldn't find out that there was a counter. There may be better ways anyway.
>
> \define\FirstLine{\let\myLine\SecondLine\sc}
> \define\SecondLine{\let\myLine\OtherLine\bf}
> \define\OtherLine{\tf}
> \definelines[doMyLines][command=\myLine]
> \def\startMyLines{\let\myLine\FirstLine\startdoMyLines}
> \def\stopMyLines{\stopdoMyLines}
>
Yes, that's exactly what I meant, and you even answered my next
question, too.
Thank you!
Ingo
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: block with different formatting per line?
2013-02-03 3:56 ` Rogers, Michael K
2013-02-04 15:16 ` Ingo Hohmann
@ 2013-02-06 6:04 ` Ingo Hohmann
2013-02-06 13:29 ` Wolfgang Schuster
2013-02-07 4:32 ` Rogers, Michael K
1 sibling, 2 replies; 10+ messages in thread
From: Ingo Hohmann @ 2013-02-06 6:04 UTC (permalink / raw)
To: mailing list for ConTeXt users
[-- Attachment #1.1: Type: text/plain, Size: 1581 bytes --]
On 02/03/2013 04:56 AM, Rogers, Michael K wrote:
> On Feb 1, 2013, at 6:16 PM, Ingo Hohmann<context@ingohohmann.de> wrote:
>
>> Hi,
>>
>> is it possible to define a block, where lines are automatically formatted differently?
>> For example:
>> first line in caps,
>> second in bold,
>> others normal.
>>
>> Is this possible? And how?
> If you mean input lines, then yes. But if you mean output lines, then I don't know. It seems a well-defined task, but a hard task judging by how the line-breaking algorithm is described by Knuth. I'll leave that question to experts.
>
> Here's a way to process the input lines. If there's a counter that counts the line number, there would be another way; but I couldn't find out that there was a counter. There may be better ways anyway.
>
> \define\FirstLine{\let\myLine\SecondLine\sc}
> \define\SecondLine{\let\myLine\OtherLine\bf}
> \define\OtherLine{\tf}
> \definelines[doMyLines][command=\myLine]
> \def\startMyLines{\let\myLine\FirstLine\startdoMyLines}
> \def\stopMyLines{\stopdoMyLines}
As I said that works, but while trying to understand this, I found that
the documentation for \definelines doesn't mention the "command="
option. On the other hand it does mention "align=" and this doesn't
work. Neither does \setuplines.
I always get "undefined control sequence".
\definelines[doFirstBoldRight][command=\myLine]
\setupdoFirstBoldRight[align=flushleft]
OR
\definelines[doFirstBoldRight][align=flushleft,command=\myLine]
gives the same error.
Do you have any idea what I am doing wrong?
Thank you in advance,
Ingo
[-- Attachment #1.2: Type: text/html, Size: 2366 bytes --]
[-- Attachment #2: Type: text/plain, Size: 485 bytes --]
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: block with different formatting per line?
2013-02-06 6:04 ` Ingo Hohmann
@ 2013-02-06 13:29 ` Wolfgang Schuster
2013-02-06 15:00 ` Ingo Hohmann
2013-02-07 4:32 ` Rogers, Michael K
1 sibling, 1 reply; 10+ messages in thread
From: Wolfgang Schuster @ 2013-02-06 13:29 UTC (permalink / raw)
To: mailing list for ConTeXt users
[-- Attachment #1.1: Type: text/plain, Size: 1858 bytes --]
Am 06.02.2013 um 07:04 schrieb Ingo Hohmann <context@ingohohmann.de>:
> On 02/03/2013 04:56 AM, Rogers, Michael K wrote:
>> On Feb 1, 2013, at 6:16 PM, Ingo Hohmann <context@ingohohmann.de> wrote:
>>
>>> Hi,
>>>
>>> is it possible to define a block, where lines are automatically formatted differently?
>>> For example:
>>> first line in caps,
>>> second in bold,
>>> others normal.
>>>
>>> Is this possible? And how?
>> If you mean input lines, then yes. But if you mean output lines, then I don't know. It seems a well-defined task, but a hard task judging by how the line-breaking algorithm is described by Knuth. I'll leave that question to experts.
>>
>> Here's a way to process the input lines. If there's a counter that counts the line number, there would be another way; but I couldn't find out that there was a counter. There may be better ways anyway.
>>
>> \define\FirstLine{\let\myLine\SecondLine\sc}
>> \define\SecondLine{\let\myLine\OtherLine\bf}
>> \define\OtherLine{\tf}
>> \definelines[doMyLines][command=\myLine]
>> \def\startMyLines{\let\myLine\FirstLine\startdoMyLines}
>> \def\stopMyLines{\stopdoMyLines}
> As I said that works, but while trying to understand this, I found that the documentation for \definelines doesn't mention the "command=" option. On the other hand it does mention "align=" and this doesn't work. Neither does \setuplines.
>
> I always get "undefined control sequence".
>
> \definelines[doFirstBoldRight][command=\myLine]
> \setupdoFirstBoldRight[align=flushleft]
\setuplines[doFirstBoldRight][…]
> OR
>
> \definelines[doFirstBoldRight][align=flushleft,command=\myLine]
>
> gives the same error.
>
> Do you have any idea what I am doing wrong?
Make a complete example.
BTW: I suggest to use my Lua example from the other thread.
Wolfgang
[-- Attachment #1.2: Type: text/html, Size: 3032 bytes --]
[-- Attachment #2: Type: text/plain, Size: 485 bytes --]
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: block with different formatting per line?
2013-02-06 13:29 ` Wolfgang Schuster
@ 2013-02-06 15:00 ` Ingo Hohmann
0 siblings, 0 replies; 10+ messages in thread
From: Ingo Hohmann @ 2013-02-06 15:00 UTC (permalink / raw)
To: mailing list for ConTeXt users
[-- Attachment #1.1: Type: text/plain, Size: 2173 bytes --]
On 02/06/2013 02:29 PM, Wolfgang Schuster wrote:
>
> Am 06.02.2013 um 07:04 schrieb Ingo Hohmann <context@ingohohmann.de
> <mailto:context@ingohohmann.de>>:
>
>> On 02/03/2013 04:56 AM, Rogers, Michael K wrote:
>>> On Feb 1, 2013, at 6:16 PM, Ingo Hohmann<context@ingohohmann.de> wrote:
>>> <...>
>>> Here's a way to process the input lines. If there's a counter that counts the line number, there would be another way; but I couldn't find out that there was a counter. There may be better ways anyway.
>>>
>>> \define\FirstLine{\let\myLine\SecondLine\sc}
>>> \define\SecondLine{\let\myLine\OtherLine\bf}
>>> \define\OtherLine{\tf}
>>> \definelines[doMyLines][command=\myLine]
>>> \def\startMyLines{\let\myLine\FirstLine\startdoMyLines}
>>> \def\stopMyLines{\stopdoMyLines}
>> As I said that works, but while trying to understand this, I found
>> that the documentation for \definelines doesn't mention the
>> "command=" option. On the other hand it does mention "align=" and
>> this doesn't work. Neither does \setuplines.
>>
>> I always get "undefined control sequence".
> <...>
> Make a complete example.
I thought I could get away without it, because it's practically the
answer to my question, just with alignment.
For some reason, now that I started from scratch to show the example, it
works.
\define\FirstLine{\let\myLine\SecondLine\sc}
\define\SecondLine{\let\myLine\OtherLine\bf}
\define\OtherLine{\tf}
% this align here didn't work
\definelines[doMyLines][align=flushright,command=\myLine]
% and this setup doesn't
%\setupdoMyLines[align=flushright]
\def\startMyLines{\let\myLine\FirstLine\startdoMyLines}
\def\stopMyLines{\stopdoMyLines}
\definelines[right][align=flushright]
% I get an error here, too.
%\setupright[align=flushright]
\starttext
\startright
test
\stopright
\startMyLines
First line in caps,
Second in bold,
Others normal.
Others normal.
Others normal.
\stopMyLines
\stoptext
> BTW: I suggest to use my Lua example from the other thread.
When I looked at it first, it was in the middle of the night. And it
looked a bit over the moon for me. Now I think I can grab it, and it
looks _very_ powerfull.
Thank you.
Ingo
[-- Attachment #1.2: Type: text/html, Size: 3926 bytes --]
[-- Attachment #2: Type: text/plain, Size: 485 bytes --]
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: block with different formatting per line?
2013-02-01 23:16 block with different formatting per line? Ingo Hohmann
2013-02-03 3:56 ` Rogers, Michael K
@ 2013-02-06 19:21 ` Bill Meahan
2013-02-06 19:43 ` Paragraph formatting (was: block with different formatting per line?) Wolfgang Schuster
2013-02-06 19:45 ` block with different formatting per line? Aditya Mahajan
1 sibling, 2 replies; 10+ messages in thread
From: Bill Meahan @ 2013-02-06 19:21 UTC (permalink / raw)
To: mailing list for ConTeXt users
On 02/01/2013 06:16 PM, Ingo Hohmann wrote:
> Hi,
>
> is it possible to define a block, where lines are automatically
> formatted differently?
> For example:
> first line in caps,
> second in bold,
> others normal.
>
> Is this possible? And how?
My #1 "Wish List" item for ConTeXt is /allowing/ "stylesheets" at the
paragraph level. That would allow closer correspondence with what
CSS/CSS3, Scribus, ODT, EPUB3 &al do and make it much easier to write
transformation scripts whether XSLT, lua code, Perl code or whatever
favorite tool one wishes to use.
I envision something like (psuedo code):
\setupstylesheet[myparagraphstyle]
[font=AccanthisADF,
fontsize=12pt,
fontstyle=italic,
alignment=justified,
frame=no,
color=blue,
width=\textwidth,
&c ....
]
\starttext
\startparagraph[style=mystylesheet]
\input tufte
\stopparagraph
\input knuth
\stoptext
The output would have the tufte quote formatted according to my
stylesheet and knuth in whatever the global style is.
The style parameter in the start/stop paragraph would, of course, be
/optional/ so existing documents would be unchanged from current
behavior but allow the introduction of paragraph styles.
--
Bill Meahan
Westland, Michigan USA
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Paragraph formatting (was: block with different formatting per line?)
2013-02-06 19:21 ` Bill Meahan
@ 2013-02-06 19:43 ` Wolfgang Schuster
2013-02-06 19:45 ` block with different formatting per line? Aditya Mahajan
1 sibling, 0 replies; 10+ messages in thread
From: Wolfgang Schuster @ 2013-02-06 19:43 UTC (permalink / raw)
To: mailing list for ConTeXt users
Am 06.02.2013 um 20:21 schrieb Bill Meahan <subscribed_lists@meahan.net>:
> My #1 "Wish List" item for ConTeXt is /allowing/ "stylesheets" at the paragraph level. That would allow closer correspondence with what CSS/CSS3, Scribus, ODT, EPUB3 &al do and make it much easier to write transformation scripts whether XSLT, lua code, Perl code or whatever favorite tool one wishes to use.
>
> I envision something like (psuedo code):
>
> \setupstylesheet[myparagraphstyle]
> [font=AccanthisADF,
> fontsize=12pt,
> fontstyle=italic,
> alignment=justified,
> frame=no,
> color=blue,
> width=\textwidth,
> &c ....
> ]
>
> \starttext
>
> \startparagraph[style=mystylesheet]
> \input tufte
> \stopparagraph
>
> \input knuth
>
> \stoptext
>
> The output would have the tufte quote formatted according to my stylesheet and knuth in whatever the global style is.
>
> The style parameter in the start/stop paragraph would, of course, be /optional/ so existing documents would be unchanged from current behavior but allow the introduction of paragraph styles.
A few of these values can be set for certain paragraphs with the new \defineparagraph command.
Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: block with different formatting per line?
2013-02-06 19:21 ` Bill Meahan
2013-02-06 19:43 ` Paragraph formatting (was: block with different formatting per line?) Wolfgang Schuster
@ 2013-02-06 19:45 ` Aditya Mahajan
1 sibling, 0 replies; 10+ messages in thread
From: Aditya Mahajan @ 2013-02-06 19:45 UTC (permalink / raw)
To: mailing list for ConTeXt users
On Wed, 6 Feb 2013, Bill Meahan wrote:
> On 02/01/2013 06:16 PM, Ingo Hohmann wrote:
>> Hi,
>>
>> is it possible to define a block, where lines are automatically formatted
>> differently?
>> For example:
>> first line in caps,
>> second in bold,
>> others normal.
>>
>> Is this possible? And how?
>
> My #1 "Wish List" item for ConTeXt is /allowing/ "stylesheets" at the
> paragraph level. That would allow closer correspondence with what CSS/CSS3,
> Scribus, ODT, EPUB3 &al do and make it much easier to write transformation
> scripts whether XSLT, lua code, Perl code or whatever favorite tool one
> wishes to use.
>
> I envision something like (psuedo code):
>
> \setupstylesheet[myparagraphstyle]
> [font=AccanthisADF,
> fontsize=12pt,
> fontstyle=italic,
> alignment=justified,
> frame=no,
> color=blue,
> width=\textwidth,
> &c ....
> ]
>
> \starttext
>
> \startparagraph[style=mystylesheet]
> \input tufte
> \stopparagraph
>
> \input knuth
>
> \stoptext
framedtext already does most of this (except that it makes the paragraphs
unbreakable across pages). I don't remember if backgrounds has all the
relevant keys.
Aditya
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: block with different formatting per line?
2013-02-06 6:04 ` Ingo Hohmann
2013-02-06 13:29 ` Wolfgang Schuster
@ 2013-02-07 4:32 ` Rogers, Michael K
1 sibling, 0 replies; 10+ messages in thread
From: Rogers, Michael K @ 2013-02-07 4:32 UTC (permalink / raw)
To: mailing list for ConTeXt users
[-- Attachment #1.1: Type: text/plain, Size: 2492 bytes --]
On Feb 6, 2013, at 1:04 AM, Ingo Hohmann <context@ingohohmann.de<mailto:context@ingohohmann.de>> wrote:
On 02/03/2013 04:56 AM, Rogers, Michael K wrote:
On Feb 1, 2013, at 6:16 PM, Ingo Hohmann <context@ingohohmann.de><mailto:context@ingohohmann.de> wrote:
Hi,
is it possible to define a block, where lines are automatically formatted differently?
For example:
first line in caps,
second in bold,
others normal.
Is this possible? And how?
If you mean input lines, then yes. But if you mean output lines, then I don't know. It seems a well-defined task, but a hard task judging by how the line-breaking algorithm is described by Knuth. I'll leave that question to experts.
Here's a way to process the input lines. If there's a counter that counts the line number, there would be another way; but I couldn't find out that there was a counter. There may be better ways anyway.
\define\FirstLine{\let\myLine\SecondLine\sc}
\define\SecondLine{\let\myLine\OtherLine\bf}
\define\OtherLine{\tf}
\definelines[doMyLines][command=\myLine]
\def\startMyLines{\let\myLine\FirstLine\startdoMyLines}
\def\stopMyLines{\stopdoMyLines}
As I said that works, but while trying to understand this, I found that the documentation for \definelines doesn't mention the "command=" option. On the other hand it does mention "align=" and this doesn't work. Neither does \setuplines.
I figured it out from the source, spac-lin.mkiv. One might see there that the "align" key does not seem to be processed; it s a relic from a previous version of ConTeXt, I suppose. Many macros have a "command" key, which usually seems to be a method for customizing the basic unit, in this case a line. (The source is written in a certain style that makes it possible often to figure things out, even when the wiki is not up-to-date. I say "possible" but not always easy. And there's always this maillist.)
________________________________
This e-mail message (including any attachments) is for the sole use of
the intended recipient(s) and may contain confidential and privileged
information. If the reader of this message is not the intended
recipient, you are hereby notified that any dissemination, distribution
or copying of this message (including any attachments) is strictly
prohibited.
If you have received this message in error, please contact
the sender by reply e-mail message and destroy all copies of the
original message (including attachments).
[-- Attachment #1.2: Type: text/html, Size: 4224 bytes --]
[-- Attachment #2: Type: text/plain, Size: 485 bytes --]
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage : http://www.pragma-ade.nl / http://tex.aanhet.net
archive : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-02-07 4:32 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-01 23:16 block with different formatting per line? Ingo Hohmann
2013-02-03 3:56 ` Rogers, Michael K
2013-02-04 15:16 ` Ingo Hohmann
2013-02-06 6:04 ` Ingo Hohmann
2013-02-06 13:29 ` Wolfgang Schuster
2013-02-06 15:00 ` Ingo Hohmann
2013-02-07 4:32 ` Rogers, Michael K
2013-02-06 19:21 ` Bill Meahan
2013-02-06 19:43 ` Paragraph formatting (was: block with different formatting per line?) Wolfgang Schuster
2013-02-06 19:45 ` block with different formatting per line? Aditya Mahajan
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 NNTP newsgroup(s).