Scripting News

<%blogHomeDescription%>

Beta WordPress with JSON

I got an email from Matt Mullenweg with a pointer to a JSONification of his RSS feed.

He says: "Now included in the beta 1 of WP 3.8 we just released."

I wrote a little JavaScript app to read the file, and it works. Look ma, no server!

View Source to see how it works.

Now you can write a nice WordPress blog browser without a proxy server.

Next step is obviously an equivalent writing interface.

A picture of a slice of cheese cake.

 11/21/2013; 11:54:40 AM.

Design: Outline indentation and Markdown?

The puzzle

The user enters a Markdown document in an outline.

How to interpret indentation?

Necessary background

1st approach -- flatten everything

In the first approach we ignore indentation.

As we generate Markdown text from the outline, we go into sub-heads, but we don't indent with tabs, add any Markdown syntax, or HTML syntax.

Consider this example:

To-do list

Walk the dogs.

Get coffee.

Two shot-in-the-dark coffees.

One tall latte.

Go to a movie.

What we would generate, in Markdown, is this:

To-do list

Walk the dogs.

Get coffee.

Two shot-in-the-dark coffees.

One tall latte.

Go to a movie.

This is the approach I take in the software I'm working on, but have not released. It's the most conservative approach. It says outline indentation is a writing aid, but has no effect on the rendering. It may be possible to add interpretation for structure in the future, but if we do it we would break existing users.

2nd approach -- ignore Markdown

Note: This approach is pure fiction. I don't think it's possible in Markdown.

Having used an outline-based CMS for many years, the approach I like best is the one that you're reading right now. The structure is reflected in an HTML outline with wedges that can be used to collapse or re-expand the text.

This way I can organize my writing and have that organization reflected in the readers' experience.

So in the example we're using the to-do list would look like this:

To-do list

Walk the dogs.

Get coffee.

Two shot-in-the-dark coffees.

One tall latte.

Go to a movie.

3rd approach -- a compromise between the two

Use Markdown syntax to indicate list structure.

We might render the list as follows:

To-do list

* Walk the dogs.

* Get coffee.

- Two shot-in-the-dark coffees.

- One tall latte.

* Go to a movie.

However, unless I'm missing something, Markdown sees one flat list, not a list with a second item containing its own sub-list with two items. In other words, there's no concept of nested lists in Markdown?

I see that at least one Markdown processor has innovated here.

Or we might render it thus, to give emphasis to the main head:

### To-do list

* Walk the dogs.

* Get coffee.

- Two shot-in-the-dark coffees.

- One tall latte.

* Go to a movie.

This approach is needed to help the eye pick up the structure when looking at a long list, each with a lot of subs.

Other approaches?

I wanted to put this out for comment, because I want to make the best use of outlining and Markdown, and my experience with Markdown is very limited.

 11/21/2013; 9:11:37 AM.


It's even worse than it appears. © 1997-2013 Scripting News, Inc.