Commit graph

268 commits

Author SHA1 Message Date
Ben Bader
f7bd09f1be Merge pull request #142 from harrigan/fix-typos
Fix typos
2015-01-07 10:28:58 -08:00
Martin Harrigan
e7806a7a45 Fix typos 2015-01-07 15:07:20 +00:00
Ben Bader
a21cd992c4 Merge pull request #134 from fogus/master
Added support for prasing Lein project.clj files and files without ns decls
2014-11-28 22:06:51 -08:00
fogus
9e66b1266d Removed the default 2014-11-18 14:10:35 -05:00
fogus
8522fa3fba Removed the default 2014-11-18 14:08:47 -05:00
fogus
e512fec93c The filename itself can standin for the namespace when its has none (e.g. project.clj and data_readers.clj) 2014-11-18 13:18:17 -05:00
fogus
0bd050d75a First cut at parsing the project.clj file too. 2014-11-18 12:43:18 -05:00
Gary Deer
e54a83a28b can't cut a release without release notes 2014-09-04 20:43:06 -05:00
Gary Deer
1afa0d034b Update README.md 2014-09-04 09:56:50 -05:00
Gary Deer
fd7168219a Delete project.clj~ 2014-08-28 21:52:17 -05:00
Gary Deer
1e234949d4 Delete README.md~ 2014-08-28 21:52:01 -05:00
Gary Deer
a30ee8c2bd updated release version 2014-08-28 21:47:01 -05:00
Gary Deer
445dd05319 Merge pull request #130 from OtherPeoplesPixels/master
Improve cljs file support and sort by namespace
2014-03-15 13:13:38 -05:00
Kevin Neaton
da5bf8d3fa Sort files by namespace :) 2014-03-13 14:59:18 -05:00
Kevin Neaton
275b470eec Improved handling of clojurescrpt files...
* Find all processable files in one pass to preserve order.
* Added .cljx to the set of processable file extensions.
* Use set as predicate instead of regex. Maybe down the road this set
  could be configured by users in their project.clj files?
2014-03-13 14:54:29 -05:00
Kevin Neaton
56a9e6a004 Updated styles to ensure that h2 and h3 are smaller than h1 2014-03-13 14:48:47 -05:00
benjamin-bader
9ba5c6ccc7 Merge pull request #129 from benjamin-bader/fix-github-url
Fixing Marginalia's GitHub URL in the source code.
2014-02-28 19:42:46 -08:00
Ben Bader
1eca1651a5 Fixing Marginalia's GitHub URL in the source code. 2014-02-28 19:40:09 -08:00
Gary Deer
91ba89b950 Merge pull request #127 from benjamin-bader/fix-floating-toc
Actually inserting floating-toc HTML into generated uberdoc.
2014-02-27 18:45:03 -06:00
Ben Bader
4c561a524a Actually inserting floating-toc HTML into generated uberdoc.
The var itself was being written out, not its contents.  On top of that,
the var holds a fn, and not HTML.  This patch invokes the fn where
appropriate (i.e. in `uberdoc-html`).
2014-02-26 10:17:13 -08:00
Gary Deer
2d8bfb72ee updated readme 2014-02-21 19:10:48 -06:00
Gary Deer
13612a3c7b Merge pull request #126 from benjamin-bader/add-comment-directives
Adding directives to selectively disable comment parsing.
2014-02-21 19:01:00 -06:00
Ben Bader
28eff57a69 Replacing "#" with "@" as the directive-start character.
In the excitement of getting something working and polished, I
overlooked the fact that "#" is indeed part of Markdown syntax, and that
there is little to distinguish `;; #Directive` from `;; # Title`.

"@" is visually distinctive, and is not currently part of Markdown.
2014-02-16 15:57:54 -08:00
Ben Bader
7e1eee7ff7 Adding directives to selectively disable comment parsing.
This change adds so-called 'directives' to our comments.  A directive is
a comment line whose only contents are a hash, followed by the directive
name, e.g.

```
;; #DirectiveName
```

Directives are not included in the `*comments*` vector in any case.

The two directives implemented here are "#MargDisable" and
"#MargEnable".  The former, when encountered, causes comments read by
`read-comment` to be ignored.  The latter re-enables it.

The rationale for this change is to accommodate e.g. license-header
boilerplate without polluting the generated docs.
2014-02-16 13:57:42 -08:00
Murphy McMahon
17c75832de add cljs data literal support to parse-file 2014-01-01 18:53:53 -02:00
Murphy McMahon
cdbc6e6dc8 ignore nrepl 2013-12-30 23:46:12 -02:00
Gary D
8fc18a22af More README fixes, all links should be correct now 2013-10-13 13:16:27 -05:00
Gary Deer
78863a2812 Merge pull request #117 from vedang/patch/link-url
Hyperlink the project name to it's URL.
2013-10-13 10:37:31 -07:00
Gary Deer
19dd1cd1db Merge pull request #118 from rmacy/patch-1
Update README.md
2013-10-13 10:27:37 -07:00
Ryan Macy
85d6e21319 Update README.md
Fix broken URL
2013-09-18 03:54:58 -05:00
Vedang Manerikar
43e855a1f1 Hyperlink the project name to it's URL.
If :url is provided in the project-info, use it to create a hyperlink
for the project-name
2013-09-13 13:08:55 +05:30
Gary Deer
5e1dc99f9c took down the "help wanted" sign and put up the "under new management" sign 2013-08-13 07:56:51 -05:00
Fogus
a36b938266 Update README.md 2013-08-07 09:07:31 -04:00
Fogus
0b263c0ffe Merge pull request #115 from alexander-yakushev/master
Treat single semicolons on the line as single comments
2013-08-07 05:49:04 -07:00
Alexander Yakushev
b327d4f549 Treat single semicolons on the line like single comments
This allows multiline single-semicoloned comments to be treated as a
single comment block and not show them in the output.
2013-07-08 23:43:50 +03:00
fogus
1cd8aed997 Merge branch 'master' of github.com:fogus/marginalia 2013-06-07 11:51:46 -04:00
Fogus
cc222745c8 Merge pull request #113 from matthoffman/master
Very minor README update
2013-06-07 08:51:37 -07:00
fogus
93e2d6b16d LATEX template 2013-06-07 11:47:15 -04:00
fogus
0809bf2fa9 First pass at LATEX gen. needs love 2013-06-07 11:46:29 -04:00
fogus
03c3ee00fe Starting Mustache integration, based on fork by @ogf 2013-06-07 11:46:06 -04:00
fogus
4dad3fcd5a Starting Mustache integration 2013-06-07 11:39:55 -04:00
fogus
7195993718 A couple of parser tests 2013-06-07 11:25:45 -04:00
Fogus
0c4520fdc4 Added EPL license 2013-05-30 08:52:21 -04:00
Fogus
2883a51c38 Added EPL license 2013-05-30 08:52:01 -04:00
Matt Hoffman
86f6c0a20d Very minor README update to add a note about lein2.
It tripped me up for a few minutes (being fairly new to leiningen), so I
thought it might be worth clarifying in the README.
2013-05-22 22:51:52 -04:00
fogus
90f3c1eb1f Resources packaged 2013-05-22 09:03:49 -04:00
fogus
46c4f474a3 Dev depends update 2013-05-22 08:52:19 -04:00
fogus
6a32f845f8 Peeps 2013-05-22 08:48:49 -04:00
fogus
80723d80cf Copyright 2013-05-22 08:45:43 -04:00
fogus
7ddb3c4795 Updates to app.js 2013-05-22 08:43:49 -04:00