We’ve been quite happy with the WMD Markdown editor on Stack Overflow, kindly provided by the author, John Fraser of AttackLabs.

However, there are definitely some outstanding bugs and issues with it that we’d like to fix. Progress on this front has been severely hampered by three problems:

  1. We only have obfuscated / minified versions of the WMD editor JavaScript code.
  2. I’ve been unable to reach John over the last 4 months.
  3. My JavaScript skills are average at best.

I’m not sure what happened to John, because he was super responsive and enthusiastic early on. He helped us out in a bunch of large and small ways with the WMD implementation. Originally he planned to give me a drop of the un-obfuscated/minified WMD source. But I never heard back from him, and he seems to have fallen off the face of the planet in the last 4-6 months. I’ve sent him brief emails like clockwork every few weeks, but there’s no response. I hate to be naggy, but the alternatives are.. bad.

So it is with great regret and heavy hearts that we undertake the painful odyssey of manually un-minifying/obfuscating the WMD code ourselves. Chris Jester-Young, one of the earliest Stack Overflow users, has invested in a substantial amount of effort in this already. He’s set up a git repository for our progress so far:

http://github.com/cky/wmd/tree

(I should add that Chris, like myself, is a git noob, so be gentle!)

Chris adds the following comments:

1. How will we coordinate the changes? Do we want to have a forum where people can post links to their repositories? (My repository is writable by me only — but Git being a distributed VCS, this is not a problem, people just clone their own.) Or do you prefer to have a central repository that everyone checks into? In this case, I’m happy to check things into it — or you can import it from my repository.

2. How will we manage “knowledge transfer”, such as it were? It would help people if I could write some notes (in a wiki or something, so others can update it) on how to go about the translation. Maybe use a community-modded Stack Overflow question dedicated to this? Ideas welcome.

I’ll try to get more changes checked in periodically, but I still have a ton of projects to clear, so getting the ball rolling with other coders would probably be a good idea.

The easiest way forward is to somehow get a source code drop from John Fraser to start with. If anyone knows him, or knows someone that knows him, can you please try to get in touch? Otherwise it’s back to the salt mines of de-minifiying/obfuscating the JavaScript, until we get it all done.

Beyond that, I’d like to create a Stack Overflow branch of the WMD code, under a very permissive license. We have some needs specific to our website, of course, but I’d like to give our modifications, improvements, and bugfixes back to the greater community as well.

My gut feeling is that we should go with a “real” code hosting solution for this project, perhaps Google Code or the like..

« New UserVoice Moderators
Revisiting the Daily Reputation Cap »

28 Responses

  1. Grégoire Cachet says:

    Go to http://github.com/ for social git hosting. People can branch each other easily.

  2. Wilerson says:

    Since you’re already considering git, what about github? It has a wiki, it’s free for open source projects, and it’s easy to get links to other people repositories.

  3. Chris Jester-Young says:

    github is indeed a nice idea, and I’m thinking about it.

    However, I am currently extremely short on time (and anyone who looks at my reputation history will see the near-plateau in my rep gains, for the same reason), so if you have a github account, you’re welcome to clone off my repository, and work from that.

    Ditto for anyone who wishes to set up a Google Code, Launchpad, Sourceforge, or whatever project. :-)

    It would still be a good idea to dedicate a wiki page (or SO community question, or whatever) to coordinate this, though!

  4. Chakrit says:

    I think Google Code is the more natural choice. There are more tools for subversion than for git, especially for windows folks. And I think most of us is still git noob like you, let alone the concepts of distributed VCS

  5. Evgeny says:

    Creating an account on http://github.com and sending the code there would have taken less time imho. And that already includes a free wiki/readme display/webpage plus ssh/git/forking and whatnot.

    Even though git is distributed, having one central “authoritative” repository is still the preferred way to go. And having it on github just plain makes it easy for everyone to send changes to it — via the ‘forking inbox’, instead of git-patches via mail.

    answers for questions:
    1. No need for a forum to post links to repositories, and all that stuff.
    2. free wiki built into github.
    3. lots of other coders that know javascript and git, freely available on github.com as well.

  6. Chris Jester-Young says:

    Okay, the githubbers win. :-) I now have a github account with the wmd project: http://github.com/cky/wmd/tree

  7. Bernard says:

    I would help, but my JS-fu is weak. Sorry.

  8. Chris Jester-Young says:

    @Cody (if he reads this): I would be keen to see if you have a way to programmatically translate the whole lot to Pyvascript.

    You know you just can’t resist…and it’d be the Best Way Ever to promote Pyvascript. :-P

  9. Jon Skeet says:

    Just to check, are we okay on the licensing of all of this? I can’t see any licence in the WMD download, but I’m uneasy about reverse engineering something and then making it open without explicit permission.

    It sounds like John Fraser was *planning* on this being okay, but it would be nice to have proper confirmation. And yes, I do understand that if we could easily get in touch with him this probably wouldn’t be necessary in the first place :)

    I really don’t want to rain on anyone’s parade, but equally I’d hate to see Stack Overflow in legal trouble over this.

    If it’s all legally okay, then best of luck! I’d love to help, but my JavaScript is almost certainly significantly worse then Jeff’s.

  10. Jeff Atwood says:

    Well the current WMD code is

    http://code.google.com/p/wmd/

    under the MIT license..

    http://www.opensource.org/licenses/mit-license.php

  11. Jon Skeet says:

    Ah, cool. I’d only been on the wmd-editor.com site, which didn’t mention that (or I didn’t see it, which is equally likely). Tally ho :)

  12. tanda says:

    So, what are the things that you will like to fix?

  13. Jeff Atwood says:

    > what are the things that you will like to fix?

    Until we find John, simple reverse engineering is all that is needed.. a version that isn’t obfuscated or using single character variable names.

  14. Sammy Larbi says:

    http://www.google.com/search?q=javascript+beautifier ought to take care of the minification. I didn’t see you mention it, so I thought I would in case you just missed it for some reason or another.

    As for obfuscation, that could mean many things, but I guess variable names are useless. At least having beautified the code you could read it easier and not worry about indenting / newlining as you rename variables and functions.

    Sorry to be unhelpful with your primary request of finding the author, but hopefully a beautifier will help you out a little.

  15. Derek says:

    Jeff, it doesn’t look to me like John ever actually released wmd under the MIT license. He just indicated his plans to do so.

    > I’m refactoring the code, and *will be releasing WMD under the MIT license soon*. For now you can download the most recent release (wmd-1.0.1.zip) and use it freely.

    You’re going to be on some pretty shaky ground releasing it yourself. It’s probably something he’s not going to mind, but then again he might. People can get pretty weird about stuff they’ve written.

  16. Will says:

    Take a look at this: http://wmd-editor.com/terms

    Did you ever happen to click on something saying you agreed to that?

  17. Jeff Atwood says:

    Derek and Will — the current WMD code is here:

    http://code.google.com/p/wmd/

    **under the MIT license** .. click through to the above page for proof!

    http://www.opensource.org/licenses/mit-license.php

  18. tvanfosson says:

    Jeff — except that there is no code at code.google.com except the link to the code that seems to be referenced as pre-MIT license on the main page. I couldn’t find anything in the repository there anyway.

  19. Adam says:

    Looking at the old download page, he says:

    > Please visit wmd.googlecode.com for information on the next release, which will be open source. (The API will be changing a lot; it wasn’t really meant for public consumption.)

    So it looks like the MIT license on the Google Code page refers to the forthcoming rewrite, not the current version. The old page refers to wmd being free to use but doesn’t mention any distribution rights. I would guess that reverse engineering the code for interoperability would probably be OK, but branching this version would not.

  20. shawn says:

    ill stick to the reverse-engineer now, worry about copyright bullshit later model. very excited about using git for the first time :D

  21. Rob says:

    “Worry about copyright bullshit later” model?

    I’m sorry, but I’m with Jon and the rest on this one – make absolutely certain that the code you are planning on adapting is released under the licence you think it is, otherwise you may run into difficulties later, whether these range from simply being disallowed to continue using/distributing the code to a lawsuit, not that I expect the original author is the sort of person to go to such lengths, but he would be entitled to.

    If there’s any uncertainty about this, then you need to seek proper legal advice, or perhaps take the “simple” option – that is, not use the code, and start a community project to create the toolbar from scratch – I’m sure there’s a huge number of Stack Overflow users who would relish the opportunity to get involved and help shape part of the site.

  22. Kevin Ballard says:

    > My gut feeling is that we should go with a “real” code hosting solution for this project, perhaps Google Code or the like..

    How is GitHub not a “real” code hosting solution? I would be disappointed if you standardized on Google Code as the “official” repo, as GitHub offers so many benefits, including the incredibly easy forking and collaboration tools.

  23. Charles Roper says:

    @Kevin, The ‘My gut feeling is that we should go with a “real” code hosting solution’ is, I believe, a reflection on Chris Jester-Young’s original git repo for this project, which was located on a personal URL rather than being based on a hosted solution such as Google Code, Github, etc.

    However, Jeff has at some point updated the post to point to the Github repo which, it has to be said, does make the comment look like a slight against Github.

  24. Derek says:

    Jeff, it looks like you’re right. I missed the license link off to the right. I think he still didn’t explicitly release it under the MIT license, since the code is actually hosted elsewhere, but it’s close enough. Even if he got really weird and tried to sue, you’d have a pretty good case, especially with the “use it freely” statement he made.

  25. Bert Lamb says:

    “What about the Dufrains? Who can eat at a time like this?”

    So what happened to John Frasier?

  26. Jason S says:

    just curious: how are you doing the WYSIWYG diffs?

    e.g.:

    http://stackoverflow.com/revisions/463653/list

  27. Chris says:

    Is there any reason why WMD is packed/obfuscated? Seems strange if it’s under the MIT license and free

    I’m trying to intercept the image click button for a CMS but having problems with _8s in the source (a successful obfuscation obviously). I’ll take a look at the SO source instead though.

  28. ViX says:

    MarkItUp seems to be a good alternative for WMD
    http://markitup.jaysalvat.com/downloads/demo.php?id=markupsets/markdown

    And it is based on jQuery which where WMD is going to be based on.

Leave a Reply