topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 11:04 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Backpager, an online web editor  (Read 5553 times)

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Backpager, an online web editor
« on: June 07, 2011, 07:13 AM »
Over the last day I put together Backpager. Backpager is an online Markdown editor. You can use Backpager as an WYSIWYG Markdown editor (obviously) because the syntax is converted on the fly. You can also use it when you quickly need to write some HTML. This makes it very suitable for uses like:

* web content editing
* writing technical documentation

It might not do too much yet but I'd like to hear your ideas and comments on how to improve it. It's put together with WMD-new, Jquery-ui and Minify URI Builder and a little sprinkle of css/jss/php/htaccess. Over the last few weeks I have been writing installation documentation and combining shell commands, textfile content and instructions just gets confused/messy very quick. This should make it easier. Note: If you use Internet Explorer the experience will be less than ideal.

Site: Backpager

backpager.png
« Last Edit: June 07, 2011, 07:16 AM by justice »

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: Backpager, an online web editor
« Reply #1 on: June 07, 2011, 09:33 AM »
That looks pretty good!   :up:

Stoic Joker

  • Honorary Member
  • Joined in 2008
  • **
  • Posts: 6,646
    • View Profile
    • Donate to Member
Re: Backpager, an online web editor
« Reply #2 on: June 07, 2011, 11:39 AM »
That looks pretty good!   :up:
-cranioscopical (June 07, 2011, 09:33 AM)

Hell yeah, and he put it together in a day...Now that is impressive!

40hz

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 11,857
    • View Profile
    • Donate to Member
Re: Backpager, an online web editor
« Reply #3 on: June 07, 2011, 03:11 PM »
Played with it briefly today. It is very cool.  :Thmbsup:

Quick question for Justice: Why did you set it up as an online rather than desktop hosted app?

I'm always curious about why developers choose one approach over the other. Not being a software developer myself, I haven't a clue, so please forgive me if it's a naive question.   :)

tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: Backpager, an online web editor
« Reply #4 on: June 07, 2011, 03:18 PM »
I know nothing about this stuff so thought I'd have a look - with the preview I'm bound to (maybe) learn a little :-[

I just copied all the sample syntax into the left pane and previewed it
a couple of very minor things struck me as odd (if I've completely misunderstood things there's no need to explain it all !):

1] Left pane says:
Preceded by a space, the colon
disappears. :
Preview says:
Preceded by a space, the colon disappears. :
but the colon is still there...
__________________

2] Left pane says:
> >
> * You can quote a list.
> * Etc.
showed as this in the preview (it may well be correct - I just presumed it should be a list):
> * You can quote a list. * Etc.
Tom

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: Backpager, an online web editor
« Reply #5 on: June 08, 2011, 03:15 AM »
Thanks for the feedback all!  :Thmbsup:
Quick question for Justice: Why did you set it up as an online rather than desktop hosted app?
Interesting question, I have been thinking about it and it really comes down to 3 things. 1) The editor framework and interface framework were already available as javascript libraries - where as with a desktop app the development process would become more complicated. 2) I can't program desktop apps, except in AutoHotkey which becomes unwieldy (imho) as soon as you want to do something nonstandard. 3) I wouldn't have made it if I couldn't get some sort of prototype up running quickly.

a couple of very minor things struck me as odd (if I've completely misunderstood things there's no need to explain it all !):
Either the syntax page is for a different markdown library (with added features) or the library I use to 'convert' the code has a few issues. I don't think they're common so the easiest solution is to remove them from the syntax page  :P You're right in your expectations tomos.