Jump to page: 1 29  
Page
Thread overview
Adding Markdown to Ddoc
Dec 06, 2017
Walter Bright
Dec 06, 2017
rikki cattermole
Dec 06, 2017
Mike Parker
Dec 06, 2017
Walter Bright
Dec 06, 2017
Sönke Ludwig
Dec 06, 2017
Walter Bright
Dec 06, 2017
Sönke Ludwig
Dec 06, 2017
Walter Bright
Dec 16, 2017
Ecstatic Coder
Dec 06, 2017
Walter Bright
Dec 06, 2017
Adrian Matoga
Dec 06, 2017
H. S. Teoh
Dec 06, 2017
H. S. Teoh
Dec 06, 2017
Walter Bright
Dec 06, 2017
Nemanja Boric
Dec 06, 2017
David Gileadi
Dec 06, 2017
Basile B.
Dec 07, 2017
David Gileadi
Dec 07, 2017
Jacob Carlborg
Dec 08, 2017
Walter Bright
Dec 08, 2017
Jacob Carlborg
Dec 08, 2017
Walter Bright
Dec 08, 2017
Seb
Dec 08, 2017
WebFreak001
Dec 08, 2017
Patrick Schluter
Dec 08, 2017
Patrick Schluter
Dec 09, 2017
Walter Bright
Dec 09, 2017
H. S. Teoh
Dec 09, 2017
Walter Bright
Dec 09, 2017
H. S. Teoh
Dec 08, 2017
Jacob Carlborg
Dec 09, 2017
Walter Bright
Dec 09, 2017
Jacob Carlborg
Dec 10, 2017
Walter Bright
Dec 10, 2017
meppl
Dec 10, 2017
Walter Bright
Dec 10, 2017
meppl
Dec 11, 2017
Walter Bright
Dec 11, 2017
Jakob Bornecrantz
Dec 11, 2017
Guillaume Piolat
Dec 11, 2017
user1234
Dec 11, 2017
John Gabriele
Dec 12, 2017
Patrick Schluter
Dec 11, 2017
bachmeier
Dec 11, 2017
Walter Bright
Dec 11, 2017
David Gileadi
Dec 11, 2017
Jakob Bornecrantz
Dec 12, 2017
Walter Bright
Dec 12, 2017
Walter Bright
Dec 12, 2017
Bernard Helyer
Dec 12, 2017
Jakob Bornecrantz
Dec 14, 2017
Chris
Dec 19, 2017
Ecstatic Coder
Dec 11, 2017
John Gabriele
Dec 11, 2017
Walter Bright
Dec 12, 2017
Chris
Dec 12, 2017
Chris
Dec 12, 2017
John Gabriele
Dec 12, 2017
John Gabriele
Dec 12, 2017
Chris
Dec 09, 2017
David Gileadi
Dec 09, 2017
Adam D. Ruppe
Dec 09, 2017
David Gileadi
Dec 10, 2017
Walter Bright
Dec 08, 2017
John Gabriele
Dec 08, 2017
John Gabriele
Dec 08, 2017
H. S. Teoh
Dec 08, 2017
Arjan
Dec 08, 2017
Walter Bright
Dec 07, 2017
John Gabriele
Dec 07, 2017
Adam D. Ruppe
Dec 12, 2017
Jonathan M Davis
Dec 12, 2017
meppl
Dec 12, 2017
Jonathan M Davis
Dec 12, 2017
Chris
Dec 12, 2017
Chris
Dec 12, 2017
Bastiaan Veelo
Dec 12, 2017
meppl
Dec 12, 2017
Chris
Dec 12, 2017
Adam D. Ruppe
Dec 12, 2017
Biotronic
Dec 13, 2017
Jonathan M Davis
December 05, 2017
https://help.github.com/articles/basic-writing-and-formatting-syntax/

Anyone interested in picking up the flag?

(I know this has come up before, and I've been opposed to it, but I've changed my mind.)
December 06, 2017
We should probably do the opposite.

Build a markdown parser and then have a way to give the output an understanding of ddoc features.

It will also be usable in other projects ;)
December 06, 2017
On Wednesday, 6 December 2017 at 04:11:33 UTC, Walter Bright wrote:
> https://help.github.com/articles/basic-writing-and-formatting-syntax/
>
> Anyone interested in picking up the flag?
>
> (I know this has come up before, and I've been opposed to it, but I've changed my mind.)

Can you see me jumping up and down over here? I don't care about it for source documentation, but if we could start using Mardkown in place of Ddoc macros for the web site, woohoo!
December 05, 2017
On 12/5/2017 8:37 PM, Mike Parker wrote:
> Can you see me jumping up and down over here?

No, but my seismometer is showing some action!

December 06, 2017
Am 06.12.2017 um 05:11 schrieb Walter Bright:
> https://help.github.com/articles/basic-writing-and-formatting-syntax/
> 
> Anyone interested in picking up the flag?
> 
> (I know this has come up before, and I've been opposed to it, but I've changed my mind.)

This is great news! While I don't have the time to work on this directly, I can offer vibe.d's Markdown module* (re-licensing as necessary): https://github.com/vibe-d/vibe.d/blob/master/textfilter/vibe/textfilter/markdown.d

Markdown is a strange thing to parse in the classical way due to its original regex-cascade style of implementation/design, so it was kind of difficult to find representations that allow reasonably efficient and comprehensible processing.

* There is also "dmarkdown", which is just a fork of the vibe.d code
December 06, 2017
On 12/6/2017 1:33 AM, Sönke Ludwig wrote:
> This is great news! While I don't have the time to work on this directly, I can offer vibe.d's Markdown module* (re-licensing as necessary): https://github.com/vibe-d/vibe.d/blob/master/textfilter/vibe/textfilter/markdown.d
> 
> Markdown is a strange thing to parse in the classical way due to its original regex-cascade style of implementation/design, so it was kind of difficult to find representations that allow reasonably efficient and comprehensible processing.
> 
> * There is also "dmarkdown", which is just a fork of the vibe.d code

Thanks! It's always great to be able to leverage existing code. But you'll need to Boost license it!
December 06, 2017
Am 06.12.2017 um 12:34 schrieb Walter Bright:
> On 12/6/2017 1:33 AM, Sönke Ludwig wrote:
>> This is great news! While I don't have the time to work on this directly, I can offer vibe.d's Markdown module* (re-licensing as necessary): https://github.com/vibe-d/vibe.d/blob/master/textfilter/vibe/textfilter/markdown.d 
>>
>>
>> Markdown is a strange thing to parse in the classical way due to its original regex-cascade style of implementation/design, so it was kind of difficult to find representations that allow reasonably efficient and comprehensible processing.
>>
>> * There is also "dmarkdown", which is just a fork of the vibe.d code
> 
> Thanks! It's always great to be able to leverage existing code. But you'll need to Boost license it!

No problem!
December 06, 2017
On 12/6/2017 3:37 AM, Sönke Ludwig wrote:
> No problem!

Now, just need someone to step up and do the work. :-/
December 06, 2017
On 12/5/2017 8:11 PM, Walter Bright wrote:
> (I know this has come up before, and I've been opposed to it, but I've changed my mind.)

Part of this change of mind was driven by the bit of markdown that Ddoc already supports - the backticks to quote code and auto detection of URLs - and how nice that has turned out.
December 06, 2017
On Wednesday, 6 December 2017 at 12:13:56 UTC, Walter Bright wrote:
> On 12/5/2017 8:11 PM, Walter Bright wrote:
>> (I know this has come up before, and I've been opposed to it, but I've changed my mind.)
>
> Part of this change of mind was driven by the bit of markdown that Ddoc already supports - the backticks to quote code and auto detection of URLs - and how nice that has turned out.

This is going to be the right time to deprecate the automatic change of some words that happen to be parameter names into code. :)
« First   ‹ Prev
1 2 3 4 5 6 7 8 9