| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 | .ds q \N'34'.TH marked 1.SH NAMEmarked \- a javascript markdown parser.SH SYNOPSIS.B marked[\-o \fI<output>\fP] [\-i \fI<input>\fP] [\-\-help][\-\-tokens] [\-\-pedantic] [\-\-gfm][\-\-breaks] [\-\-tables] [\-\-sanitize][\-\-smart\-lists] [\-\-lang\-prefix \fI<prefix>\fP][\-\-no\-etc...] [\-\-silent] [\fIfilename\fP].SH DESCRIPTION.B markedis a full-featured javascript markdown parser, built for speed.It also includes multiple GFM features..SH EXAMPLES.TPcat in.md | marked > out.html.TPecho "hello *world*" | marked.TPmarked \-o out.html \-i in.md \-\-gfm.TPmarked \-\-output="hello world.html" \-i in.md \-\-no-breaks.SH OPTIONS.TP.BI \-o,\ \-\-output\ [\fIoutput\fP]Specify file output. If none is specified, write to stdout..TP.BI \-i,\ \-\-input\ [\fIinput\fP]Specify file input, otherwise use last argument as input file.If no input file is specified, read from stdin..TP.BI \-\-testMakes sure the test(s) pass..RS.PP.B \-\-glob [\fIfile\fP]Specify which test to use..PP.B \-\-fixFixes tests..PP.B \-\-benchBenchmarks the test(s)..PP.B \-\-timeTimes The test(s)..PP.B \-\-minifiedRuns test file(s) as minified..PP.B \-\-stopStop process if a test fails..RE.TP.BI \-t,\ \-\-tokensOutput a token stream instead of html..TP.BI \-\-pedanticConform to obscure parts of markdown.pl as much as possible.Don't fix original markdown bugs..TP.BI \-\-gfmEnable github flavored markdown..TP.BI \-\-breaksEnable GFM line breaks. Only works with the gfm option..TP.BI \-\-tablesEnable GFM tables. Only works with the gfm option..TP.BI \-\-sanitizeSanitize output. Ignore any HTML input..TP.BI \-\-smart\-listsUse smarter list behavior than the original markdown..TP.BI \-\-lang\-prefix\ [\fIprefix\fP]Set the prefix for code block classes..TP.BI \-\-mangleMangle email addresses..TP.BI \-\-no\-sanitize,\ \-no-etc...The inverse of any of the marked options above..TP.BI \-\-silentSilence error output..TP.BI \-h,\ \-\-helpDisplay help information..SH CONFIGURATIONFor configuring and running programmatically..B Example    require('marked')('*foo*', { gfm: true });.SH BUGSPlease report any bugs to https://github.com/markedjs/marked..SH LICENSECopyright (c) 2011-2014, Christopher Jeffrey (MIT License)..SH "SEE ALSO".BR markdown(1),.BR node.js(1)
 |