summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2013-01-23 12:50:38 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2013-01-23 12:50:38 -0800
commit7cd5239d609fae0cfa34ac869b72c4badffb17fe (patch)
tree6fcfadb11fe60d3b081a6bd79e1b047da907ba86
parent94ed282adf39a019a4c68dffd182e2743c651688 (diff)
parenta5da6898c9f19af89be89cf5b83e1006201678d4 (diff)
Merge branch 'master' of github.com:jgm/pandoc
-rw-r--r--README13
-rw-r--r--windows/make-windows-installer.bat6
2 files changed, 13 insertions, 6 deletions
diff --git a/README b/README
index 10683b352..20581b26a 100644
--- a/README
+++ b/README
@@ -1455,15 +1455,14 @@ A line containing a row of three or more `*`, `-`, or `_` characters
Tables
------
-**Extension: `simple_tables`, `multiline_tables`, `grid_tables`,
-`pipe_tables`, `table_captions`**
-
Four kinds of tables may be used. The first three kinds presuppose the use of
a fixed-width font, such as Courier. The fourth kind can be used with
proportionally spaced fonts, as it does not require lining up columns.
### Simple tables
+**Extension: `simple_tables`, `table_captions`**
+
Simple tables look like this:
Right Left Center Default
@@ -1491,7 +1490,7 @@ to the dashed line below it:[^4]
[Markdown discussion list](http://six.pairlist.net/pipermail/markdown-discuss/2005-March/001097.html).
The table must end with a blank line, or a line of dashes followed by
-a blank line. A caption may optionally be provided (as illustrated in
+a blank line. A caption may optionally be provided (as illustrated in
the example above). A caption is a paragraph beginning with the string
`Table:` (or just `:`), which will be stripped off. It may appear either
before or after the table.
@@ -1511,6 +1510,8 @@ would be right, left, center, and right aligned, respectively.
### Multiline tables
+**Extension: `multiline_tables`, `table_captions`**
+
Multiline tables allow headers and table rows to span multiple lines
of text (but cells that span multiple columns or rows of the table are
not supported). Here is an example:
@@ -1561,6 +1562,8 @@ the table), or the table may be interpreted as a simple table.
### Grid tables
+**Extension: `grid_tables`, `table_captions`**
+
Grid tables look like this:
: Sample grid table.
@@ -1585,6 +1588,8 @@ columns or rows. Grid tables can be created easily using [Emacs table mode].
### Pipe tables
+**Extension: `pipe_tables`, `table_captions`**
+
Pipe tables look like this:
| Right | Left | Default | Center |
diff --git a/windows/make-windows-installer.bat b/windows/make-windows-installer.bat
index 5b38b4432..3ffbe1c14 100644
--- a/windows/make-windows-installer.bat
+++ b/windows/make-windows-installer.bat
@@ -1,12 +1,14 @@
@echo off
cd ..
-cabal update
+rem cabal update
cabal-dev clean
-cabal-dev install --reinstall --force-reinstall highlighting-kate
cabal-dev install --reinstall --force-reinstall --flags="embed_data_files" citeproc-hs
+if %errorlevel% neq 0 exit /b %errorlevel%
cabal-dev install --reinstall --force-reinstall --flags="embed_data_files"
+if %errorlevel% neq 0 exit /b %errorlevel%
strip cabal-dev\bin\pandoc.exe
cabal-dev\bin\pandoc.exe -s --template data\templates\default.html -S README -o README.html
+if %errorlevel% neq 0 exit /b %errorlevel%
copy COPYING COPYING.txt
copy COPYRIGHT COPYRIGHT.txt
cd windows