Closed GoogleCodeExporter closed 9 years ago
seems OK to me
--------------------------------------------
- this is
- a **list**
- of _stuff_
--------------------------------------------
see output in BabelMark:
http://is.gd/6ucoz
Original comment by wump...@gmail.com
on 18 Jan 2010 at 3:38
[deleted comment]
Here's the markdown:
=============
Whe**re** does "th", "st","nd" or "rd" appear below?
- mo**nd**ay
- tuesday
- wednesday
- **th**ursday
- friday
- satu**rd**ay
- su**nd**ay
- january
- february
- march
- april
- may
- june
- july
- augu**st**
- september
- october
- november
- december
However you know those 4 will always be followed by a space. So unless I've
missed
something, a simple
value = value.Replace("August","Augus").Replace("nd ","").Replace("st
","").Replace("nd ","").Replace("rd ","").Replace("Augus","August");
DateTime dt;
DateTime.TryParseExact(value,"DDDD dd MMMM yyyy",
DateTimeFormatInfo.InvariantInfo, DateTimeStyles.None, out dt);
==================
In babelmark it produces:
<ul>
<li>mo<strong>nd</strong>ay</li>
<li>tuesday</li>
<li>wednesday</li>
<li><strong>th</strong>ursday</li>
<li>friday</li>
<li>satu<strong>rd</strong>ay</li>
<li><p>su<strong>nd</strong>ay</p></li>
<li><p>january</p></li>
<li>february</li>
<li>march</li>
<li>april</li>
<li>may</li>
<li>june</li>
<li>july</li>
<li>augu<strong>st</strong></li>
<li>september</li>
<li>october</li>
<li>november</li>
<li>december</li>
</ul>
It's from stackoverflow:
http://stackoverflow.com/questions/2058639/parsing-a-date-like-wednesday-13th-
january-2010-with-net/2058960#2058960
Original comment by mrshrink...@gmail.com
on 18 Jan 2010 at 10:25
This must be the StrictBoldItalic property set to true on stackoverflow.com, so
this
can be closed :o]
Original comment by mrshrink...@gmail.com
on 18 Jan 2010 at 10:27
yes, you are correct, this is StrictBoldItalic in effect.
If you need intra-word bold or italic with StrictBoldItalic in effect, use or
<i>
Original comment by wump...@gmail.com
on 18 Jan 2010 at 3:48
Original issue reported on code.google.com by
mrshrink...@gmail.com
on 17 Jan 2010 at 9:35