doc: Update PDoc. Default to BlueCloth Markdown parser to avoid Maruku warning.
This commit is contained in:
parent
475f1797e1
commit
6839886699
10
Rakefile
10
Rakefile
|
@ -72,11 +72,13 @@ module PrototypeHelper
|
|||
)
|
||||
rm_rf DOC_DIR
|
||||
|
||||
PDoc::Runner.new(temp_path, {
|
||||
:output => DOC_DIR,
|
||||
PDoc.run({
|
||||
:source_files => [temp_path],
|
||||
:destination => DOC_DIR,
|
||||
:index_page => 'README.markdown',
|
||||
:syntax_highlighter => :pygments
|
||||
}).run
|
||||
:syntax_highlighter => :pygments,
|
||||
:markdown_parser => :bluecloth
|
||||
})
|
||||
|
||||
rm_rf temp_path
|
||||
end
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 147250bd65eed627e32ca5a70b57fe4f7803ab4b
|
||||
Subproject commit 472a55dd0019acf034d4f72522915a5e9efd0a1a
|
Loading…
Reference in New Issue