From: Joel U. <uck...@no...> - 2005-05-06 13:36:32
|
Thus spake Reini Urban: > Jens D. schrieb: > > sorry for my english ;) > > We try to use rc3. > > If you read textformating rules you have to do this for a bold text: > > *Test* (or some othe things like !) > > > > If you take *TEST* you became a bullet list an no bold text. > > Dont no, is it a bug or a litle feature ;) > > It's a known little bug, nobody could solve so far. > > There's a conflict with "*" marking a bullet list and "*word*" marking > bold. > > When > *some bold sentence* starts at the first column, it will be recognized > as bullet list, and not as bold markup. Could we solve this by counting the * in each line in the case where the first character is a *? If the count is odd, then we either have a list item or a mistake. I'll have a look at this one, too, once I have some time again. |
From: Joel U. <uck...@no...> - 2005-05-07 00:01:24
|
Thus spake Reini Urban: > Jens D. schrieb: > > sorry for my english ;) > > We try to use rc3. > > If you read textformating rules you have to do this for a bold text: > > *Test* (or some othe things like !) > > > > If you take *TEST* you became a bullet list an no bold text. > > Dont no, is it a bug or a litle feature ;) > > It's a known little bug, nobody could solve so far. > > There's a conflict with "*" marking a bullet list and "*word*" marking > bold. > > When > *some bold sentence* starts at the first column, it will be recognized > as bullet list, and not as bold markup. After playing in my SandBox for a few minutes, I observed that whenever I type an unordered list element, I always insert a space after the asterisk. Do other people do this as well? If so, it might make sense to treat '* ' as beginning a list element, instead of just '*'. |
From: Philip J. H. <ph...@po...> - 2005-05-06 13:45:49
|
On a procedural note, shouldn't something like this be entered in the bug tracker on sourceforge? That way it's less likely that it gets accidentally forgotten. P. On Fri, 06 May 2005 08:36:21 -0500, "Joel Uckelman" <uck...@no...> said: > Thus spake Reini Urban: > > Jens D. schrieb: > > > sorry for my english ;) We try to use rc3. If you read > > > textformating rules you have to do this for a bold text: *Test* > > > (or some othe things like !) > > > > > > If you take *TEST* you became a bullet list an no bold text. Dont > > > no, is it a bug or a litle feature ;) > > > > It's a known little bug, nobody could solve so far. > > > > There's a conflict with "*" marking a bullet list and "*word*" > > marking bold. > > > > When *some bold sentence* starts at the first column, it will be > > recognized as bullet list, and not as bold markup. > > Could we solve this by counting the * in each line in the case where > the first character is a *? If the count is odd, then we either have a > list item or a mistake. > > I'll have a look at this one, too, once I have some time again. > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: NEC IT Guy Games. Get your fingers > limbered up and give it your best shot. 4 great events, 4 > opportunities to win big! Highest score wins.NEC IT Guy Games. Play to > win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20 > _______________________________________________ > Phpwiki-talk mailing list Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwiki-talk > -- Philip J. Hollenback ph...@po... www.hollenback.net |
From: Reini U. <ru...@x-...> - 2005-05-07 09:25:09
|
Philip J. Hollenback schrieb: > On a procedural note, shouldn't something like this be entered in the > bug tracker on sourceforge? That way it's less likely that it gets > accidentally forgotten. I'm not sure if this should be treated as bug. For me it's a KnownLimitation, which would be some food for Jeff Jeff ? :) Joel's counting idea, similar to the geometrical point-in-polygon test seems to be a nice idea. Workarounds: Use old markup, __not a list__ rewrap or use   at the first column if it's the very first character,  *not a list* or use <strong></strong> instead. <strong>not a list</strong> > On Fri, 06 May 2005 08:36:21 -0500, "Joel Uckelman" > <uck...@no...> said: >>Thus spake Reini Urban: >>>Jens D. schrieb: >>>>sorry for my english ;) We try to use rc3. If you read >>>>textformating rules you have to do this for a bold text: *Test* >>>>(or some othe things like !) >>>> >>>>If you take *TEST* you became a bullet list an no bold text. Dont >>>>no, is it a bug or a litle feature ;) >>> >>>It's a known little bug, nobody could solve so far. >>> >>>There's a conflict with "*" marking a bullet list and "*word*" >>>marking bold. >>> >>>When *some bold sentence* starts at the first column, it will be >>>recognized as bullet list, and not as bold markup. >> >>Could we solve this by counting the * in each line in the case where >>the first character is a *? If the count is odd, then we either have a >>list item or a mistake. >> >>I'll have a look at this one, too, once I have some time again. -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/ http://phpwiki.org/ |