Skip to content

Commit

Permalink
Clarify docs; rename run start to run dev
Browse files Browse the repository at this point in the history
  • Loading branch information
start committed Aug 31, 2024
1 parent 7e8955d commit d669ae3
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 67 deletions.

Large diffs are not rendered by default.

118 changes: 59 additions & 59 deletions docs/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"description": "The official site for [Up](https://github.com/start/up), a markup language for writing structured content in plain text.",
"scripts": {
"start": "webpack-dev-server",
"dev": "webpack-dev-server",
"build": "rm -f docs/{index.html,*.js} && webpack"
},
"repository": {
Expand Down
10 changes: 4 additions & 6 deletions src/content/documentation.up
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For software developers, Up offers a software library that converts Up markup in
Why use Up?
===========

Up isn’t the only markup language that produces HTML. What makes it special?
Up isn’t the only markup language that produces HTML. [Markdown] (en.wikipedia.org/wiki/Markdown), for example, is hugely popular. What makes Up special?


Up has a flexible, forgiving syntax
Expand Down Expand Up @@ -50,7 +50,7 @@ Markup
Output
I ***love****** asterisks!

Up isn’t picky about which brackets you use for [topic: links].
Unlike Markdown, Up isn’t picky about which brackets you use for [topic: links].

Markup
````
Expand Down Expand Up @@ -1490,11 +1490,9 @@ Likewise, if you want a cell to span six columns, terminate that cell with six s
Empty cells
-----------

A cell consisting solely of spaces (one or more) is considered empty.
As we've already seen, a cell consisting solely of spaces (one or more) is considered empty.

Normally, you have to put at least one space in the cell, because consecutive semicolons indicate that you want the previous cell to span multiple columns.

However, to indicate that the *first* cell in a row should be empty, simply start that row with a semicolon. You don’t need to put any spaces before it.
However, to indicate that the *first* cell in a row should be empty, you can simply start that row with a semicolon. You don’t need to put any spaces before it.

Markup
````
Expand Down

0 comments on commit d669ae3

Please sign in to comment.