all repos — markup @ v0.3.3

The code we use to render README.your_favorite_markup

74d41a91
v0.3.3
Chris Wanstrath chris@ozmm.org
Mon, 29 Mar 2010 17:26:28 -0700
cd04f07a
make utf-8 work with .rst files
Chris Wanstrath chris@ozmm.org
Mon, 29 Mar 2010 17:26:01 -0700
bfc89e49
v0.3.2
Chris Wanstrath chris@ozmm.org
Thu, 25 Mar 2010 13:22:31 -0700
550c5f3c
list markups and their dependencies in the README
Chris Wanstrath chris@ozmm.org
Thu, 25 Mar 2010 13:18:49 -0700
60a36e1d
Quiet down the test failure output a little
tekkub tekkub@gmail.com
Tue, 23 Mar 2010 21:53:33 -0600
bf7155e8
use diff(1) for showing test failures
Chris Wanstrath chris@ozmm.org
Thu, 25 Mar 2010 13:02:44 -0700
f0111861
Be forgiving of ReST errors or problems that aren't user errors, but show up due to context (e.g. raw and include directives are disabled for the GitHub site).  GitHub should still give an approximate rendering
Dave Abrahams dave@boostpro.com
Mon, 22 Mar 2010 15:47:15 -0700
467efda4
v0.3.1
Chris Wanstrath chris@ozmm.org
Mon, 22 Mar 2010 17:10:49 -0700
fc50e310
Revert "Be forgiving of ReST errors or problems that aren't user errors, but show up due to context (e.g. raw and include directives are disabled for the GitHub site).  GitHub should still give an approximate rendering "

This reverts commit 86c376173892c8734c4330fb8f4b9777b5cadeea.
Chris Wanstrath chris@ozmm.org
Mon, 22 Mar 2010 17:10:20 -0700
01188801
escape!
Chris Wanstrath chris@ozmm.org
Mon, 22 Mar 2010 17:06:57 -0700
7ec431ed
History
Chris Wanstrath chris@ozmm.org
Mon, 22 Mar 2010 17:06:52 -0700
86c37617
Be forgiving of ReST errors or problems that aren't user errors, but show up due to context (e.g. raw and include directives are disabled for the GitHub site).  GitHub should still give an approximate rendering 
Dave Abrahams dave@boostpro.com
Tue, 23 Mar 2010 06:47:15 +0800
5b98a3aa
It seems .rst.txt is an acceptable rst extension 

blasted windows users
tekkub tekkub@gmail.com
Thu, 04 Mar 2010 02:19:45 +0800
31ed9953
Fix ASCII encoding error while using print u'\u010c' non-ASCII char and similar.
Gasper Zejn zejn@kiberpipa.org
Fri, 19 Mar 2010 19:47:27 +0800
eee42c69
v0.3.0
Chris Wanstrath chris@ozmm.org
Wed, 17 Mar 2010 20:48:20 -0700
7f7818be
update history
Chris Wanstrath chris@ozmm.org
Thu, 11 Mar 2010 14:18:25 -0800
3fd382fd
$ github-markup FILE.md
Chris Wanstrath chris@ozmm.org
Thu, 11 Mar 2010 14:17:55 -0800
d8d6cbb6
if render isn't passed content, try to fetch it
Chris Wanstrath chris@ozmm.org
Thu, 11 Mar 2010 14:17:35 -0800
04214a02
fix floats in man rendering
Chris Wanstrath chris@ozmm.org
Thu, 11 Mar 2010 14:17:26 -0800
6ca46abe
Add groff rendering (README.[1-9])
Chris Wanstrath chris@ozmm.org
Thu, 11 Mar 2010 14:12:57 -0800
1f9b0bd1
0.2.2
Chris Wanstrath chris@ozmm.org
Tue, 09 Feb 2010 13:13:50 -0800
24dbb97b
fix pod test
Chris Wanstrath chris@ozmm.org
Tue, 09 Feb 2010 12:47:33 -0800
c50ba283
how to run the tests?
Chris Wanstrath chris@ozmm.org
Tue, 09 Feb 2010 12:43:57 -0800
9359dbfe
use Pod::Simple::HTML to live in this century
Ricardo Signes rjbs@cpan.org
Wed, 03 Feb 2010 05:03:19 +0800
38cc6c48
0.2.1
Chris Wanstrath chris@ozmm.org
Mon, 25 Jan 2010 10:22:00 -0800
59f9e5ed
Updated rst test code for docutils 0.6

The previous render result was mistakenly written for output from
docutils 0.5. This has been adjusted accordingly.
Michael Jones m.pricejones@gmail.com
Mon, 25 Jan 2010 18:09:51 +0000
12ec0217
Disabled doctitle_xform for rest rendering

Restructured text was previously being rendered so that:

	Header1
	=======

	Some text.

	Header2
	-------

	Some text.

	Header3
	~~~~~~~

	Some more text.

Had a tag pattern of:

	<h1 class="title">Header1</h1>
	...
	<h1>Header2</h1>
	...
	<h2>Header3</h2>

Which does not suit the github css stylesheets well, as the
class="title" is ignored so the first two headings are rendered the same
size. Additionally the github stylesheets add a horizontal rule/line
above <h2> headings which in rst are really level 3 headings in the
source document.

Adding doctitle_xform: False to the render settings results in:

	<h1>Header1</h1>
	...
	<h2>Header2</h2>
	...
	<h3>Header3</h3>

Which suits the github stylesheets much better and matches the markdown
results.

The tests have also been updated to include appropriate headings in the
rst example.
Michael Jones m.pricejones@gmail.com
Mon, 25 Jan 2010 17:24:35 +0000
4d2c93af
0.2.0
Chris Wanstrath chris@ozmm.org
Sun, 10 Jan 2010 13:00:46 -0800
7a0a66d9
superfluous require
Chris Wanstrath chris@ozmm.org
Sun, 10 Jan 2010 13:00:13 -0800
aec49eeb
install the org-ruby gem for org mode
Chris Wanstrath chris@ozmm.org
Sun, 10 Jan 2010 12:59:55 -0800
eff4441e
puts => warn
Chris Wanstrath chris@ozmm.org
Sun, 10 Jan 2010 12:58:14 -0800
083aafa4
update history
Chris Wanstrath chris@ozmm.org
Sun, 10 Jan 2010 12:38:12 -0800
c9aa5112
Added org-mode support.
Brian Dewey bdewey@gmail.com
Wed, 30 Dec 2009 23:13:29 -0800
606fc9ac
0.1.7
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 18:39:28 -0800
36ec7306
okay this is how we'll deal with broken commands
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 18:36:06 -0800
d479ef1e
call asciidoc directly
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 18:32:59 -0800
e24c7ee0
0.1.6
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 13:51:16 -0800
dfb21fac
mdown
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 13:50:36 -0800
646c9c7f
0.1.5
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 11:40:35 -0800
6829e906
Actually, if we can't render a thing then don't. Not once, not never.
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 11:39:46 -0800
7945437b
0.1.4
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 11:13:55 -0800
ff6133f8
Missing commands return the input (instead of nothing)
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 11:13:43 -0800
dc002b30
FileUtils
Chris Wanstrath chris@ozmm.org
Tue, 17 Nov 2009 11:03:21 -0800
f4bd4763
0.1.3
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 18:03:18 -0800
0028d396
strip the index comments in POD
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 18:02:40 -0800
71aace4b
0.1.2
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:57:18 -0800
4c10ef7c
improved POD rendering
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:54:49 -0800
dc4eb76f
better (real world) .pod test case
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:54:38 -0800
85e53f12
github_markup => github-markup
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:46:22 -0800
19cf8326
0.1.1
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:35:58 -0800
f06a4884
Bugfix: actually check file extensions
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:35:39 -0800
5faa5672
rake gem
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:29:12 -0800
298ff57e
Added `GitHub::Markup.can_render?` helper.
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:28:40 -0800
122b433b
use test/unit so we can add more features more easily
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 17:15:34 -0800
e52387c4
yay gemcutter
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 16:10:09 -0800
1a9d3f9f
don't let the rm affect anything
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 16:08:45 -0800
7d31448b
pod is spitting out tmp files we don't want
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 16:08:32 -0800
0b1b2d71
add admin rake tasks
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 16:06:35 -0800
6fe79eee
0.1.0
Chris Wanstrath chris@ozmm.org
Mon, 02 Nov 2009 16:02:42 -0800
0ddd5f97
custom test runner
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 17:04:01 -0700
cafa5abd
missing ostruct require
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 17:03:50 -0700
1fe9828e
i have no idea. thanks bry4n
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 16:53:12 -0700
655cf0a5
documentation
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 11:31:04 -0700
8abfefe8
group file extension regexp
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 11:22:22 -0700
9dd2a32a
asciidoc passes
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 11:11:43 -0700
2b874d9d
no carriage returns ever, please
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 11:11:39 -0700
ec3a87f5
Awesome new codeless way of writing tests!
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 11:09:59 -0700
fd35b684
contributing
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 00:25:16 -0700
7fd339e7
expanded readme
Chris Wanstrath chris@ozmm.org
Sat, 31 Oct 2009 00:23:40 -0700
ebff9cba
pod!
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 23:43:54 -0700
8a8b52e3
okay now you can pass a block to `command` to tinker with the output
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 23:43:44 -0700
3861e482
always pyc
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 23:13:44 -0700
90cb20a9
boom, asciidoc
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 23:13:21 -0700
70f136e2
add rdoc markup
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 23:07:01 -0700
58b57b5f
add rest
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 22:59:26 -0700
215b7790
add `command` to the dsl, for shelling out (when we don't have a class)
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 22:59:22 -0700
eb6d8b0c
new testing style, start adding ReST
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 19:16:29 -0700
5f0d5963
don't fork this yet!
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 19:03:55 -0700
81e4ad67
gettin' fancy
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 19:00:55 -0700
b29b7011
define markups in a separate file
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:59:17 -0700
768130a2
nicer dsl
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:55:46 -0700
c70c6fad
tweakages
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:19:30 -0700
7954cf1e
basic usage
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:17:57 -0700
898e6975
get out of here!
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:17:52 -0700
5023d28a
license
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:17:47 -0700
8a01c90d
graceful fail test
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:16:15 -0700
9709f2d8
whoops, don't require and please fail gracefully
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:15:02 -0700
1a659c4a
basic textile and markdown
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:14:48 -0700
2fc7da6d
rake test and rake kick
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:14:39 -0700
86aafd93
add .kick, i love it
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:14:35 -0700
26e974f8
what the what
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:03:58 -0700
92fc5943
skeletor
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:03:47 -0700
7f1bc3e6
first commit
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:02:53 -0700