[DRE-commits] [SCM] ruby-kramdown.git branch, master, updated. upstream/0.13.5-8-g5e57af1

Youhei SASAKI uwabami at gfd-dennou.org
Sat Apr 28 06:54:14 UTC 2012


The following commit has been merged in the master branch:
commit 1f0c2c1bf0f0d0ce98c5dbe3c8053dc7852ab37b
Author: Youhei SASAKI <uwabami at gfd-dennou.org>
Date:   Fri Apr 27 17:06:32 2012 +0900

    Install upstream manpage
    
    Signed-off-by: Youhei SASAKI <uwabami at gfd-dennou.org>

diff --git a/debian/kramdown.1 b/debian/kramdown.1
deleted file mode 100644
index b4ced89..0000000
--- a/debian/kramdown.1
+++ /dev/null
@@ -1,221 +0,0 @@
-.TH KRAMDOWN "1" "April 2012" "kramdown 0.13.5" "kramdown"
-.SH NAME
-kramdown \- pure Ruby markdown converter 
-.SH SYNOPSYS
-kramdown [option] 
-.SH OPTIONS
-.HP
-\fB\-i\fR, \fB\-\-input\fR ARG
-.IP
-Specify the input format: kramdown (default) or html
-.HP
-\fB\-o\fR, \fB\-\-output\fR ARG
-.IP
-Specify the output format: html (default), kramdown or latex
-.HP
-\fB\-v\fR, \fB\-\-version\fR
-.IP
-Show the version of kramdown
-.HP
-\fB\-h\fR, \fB\-\-help\fR
-.IP
-Show the help
-.PP
-kramdown options:
-.HP
-\fB\-\-template\fR ARG
-.IP
-The name of an ERB template file that should be used to wrap the output
-.IP
-This is used to wrap the output in an environment so that the output can
-be used as a stand\-alone document. For example, an HTML template would
-provide the needed header and body tags so that the whole output is a
-valid HTML file. If no template is specified, the output will be just
-the converted text.
-.IP
-When resolving the template file, the given template name is used first.
-If such a file is not found, the converter extension is appended. If the
-file still cannot be found, the templates name is interpreted as a
-template name that is provided by kramdown (without the converter
-extension).
-.IP
-kramdown provides a default template named 'document' for each converter.
-.IP
-Default: ''
-Used by: all converters
-.HP
-\fB\-\-[no\-]auto\-ids\fR
-.IP
-Use automatic header ID generation
-.IP
-If this option is `true`, ID values for all headers are automatically
-generated if no ID is explicitly specified.
-.IP
-Default: true
-Used by: HTML/Latex converter
-.HP
-\fB\-\-auto\-id\-prefix\fR ARG
-.IP
-Prefix used for automatically generated heaer IDs
-.IP
-This option can be used to set a prefix for the automatically generated
-header IDs so that there is no conflict when rendering multiple kramdown
-documents into one output file separately. The prefix should only
-contain characters that are valid in an ID!
-.IP
-Default: ''
-Used by: HTML/Latex converter
-.HP
-\fB\-\-[no\-]parse\-block\-html\fR
-.IP
-Process kramdown syntax in block HTML tags
-.IP
-If this option is `true`, the kramdown parser processes the content of
-block HTML tags as text containing block\-level elements. Since this is
-not wanted normally, the default is `false`. It is normally better to
-selectively enable kramdown processing via the markdown attribute.
-.IP
-Default: false
-Used by: kramdown parser
-.HP
-\fB\-\-[no\-]parse\-span\-html\fR
-.IP
-Process kramdown syntax in span HTML tags
-.IP
-If this option is `true`, the kramdown parser processes the content of
-span HTML tags as text containing span\-level elements.
-.IP
-Default: true
-Used by: kramdown parser
-.HP
-\fB\-\-[no\-]html\-to\-native\fR
-.IP
-Convert HTML elements to native elements
-.IP
-If this option is `true`, the parser converts HTML elements to native
-elements. For example, when parsing `<em>hallo</em>` the emphasis tag
-would normally be converted to an `:html` element with tag type `:em`.
-If `html_to_native` is `true`, then the emphasis would be converted to a
-native `:em` element.
-.IP
-This is useful for converters that cannot deal with HTML elements.
-.IP
-Default: false
-Used by: kramdown parser
-.HP
-\fB\-\-footnote\-nr\fR ARG
-.IP
-The number of the first footnote
-.IP
-This option can be used to specify the number that is used for the first
-footnote.
-.IP
-Default: 1
-Used by: HTML converter
-.HP
-\fB\-\-coderay\-wrap\fR ARG
-.IP
-Defines how the highlighted code should be wrapped
-.IP
-The possible values are :span, :div or nil.
-.IP
-Default: :div
-Used by: HTML converter
-.HP
-\fB\-\-coderay\-line\-numbers\fR ARG
-.IP
-Defines how and if line numbers should be shown
-.IP
-The possible values are :table, :inline, :list or nil. If this option is
-nil, no line numbers are shown.
-.IP
-Default: :inline
-Used by: HTML converter
-.HP
-\fB\-\-coderay\-line\-number\-start\fR ARG
-.IP
-The start value for the line numbers
-.IP
-Default: 1
-Used by: HTML converter
-.HP
-\fB\-\-coderay\-tab\-width\fR ARG
-.IP
-The tab width used in highlighted code
-.IP
-Used by: HTML converter
-.HP
-\fB\-\-coderay\-bold\-every\fR ARG
-.IP
-Defines how often a line number should be made bold
-.IP
-Default: 10
-Used by: HTML converter
-.HP
-\fB\-\-coderay\-css\fR ARG
-.IP
-Defines how the highlighted code gets styled
-.IP
-Possible values are :class (CSS classes are applied to the code
-elements, one must supply the needed CSS file) or :style (default CSS
-styles are directly applied to the code elements).
-.IP
-Default: style
-Used by: HTML converter
-.HP
-\fB\-\-entity\-output\fR ARG
-.IP
-Defines how entities are output
-.IP
-The possible values are :as_input (entities are output in the same
-form as found in the input), :numeric (entities are output in numeric
-form), :symbolic (entities are output in symbolic form if possible) or
-:as_char (entities are output as characters if possible, only available
-on Ruby 1.9).
-.IP
-Default: :as_char
-Used by: HTML converter, kramdown converter
-.HP
-\fB\-\-toc\-levels\fR ARG
-.IP
-Defines the levels that are used for the table of contents
-.IP
-The individual levels can be specified by separating them with commas
-(e.g. 1,2,3) or by using the range syntax (e.g. 1..3). Only the
-specified levels are used for the table of contents.
-.IP
-Default: 1..6
-Used by: HTML/Latex converter
-.HP
-\fB\-\-line\-width\fR ARG
-.IP
-Defines the line width to be used when outputting a document
-.IP
-Default: 72
-Used by: kramdown converter
-.HP
-\fB\-\-latex\-headers\fR ARG
-.IP
-Defines the LaTeX commands for different header levels
-.IP
-The commands for the header levels one to six can be specified by
-separating them with commas.
-.IP
-Default: section,subsection,subsubsection,paragraph,subparagraph,subsubparagraph
-Used by: Latex converter
-.HP
-\fB\-\-smart\-quotes\fR ARG
-.IP
-Defines the HTML entity names or code points for smart quote output
-.IP
-The entities identified by entity name or code point that should be
-used for, in order, a left single quote, a right single quote, a left
-double and a right double quote are specified by separating them with
-commas.
-.IP
-Default: lsquo,rsquo,ldquo,rdquo
-Used by: HTML/Latex converter
-.SH AUTHOR
-.PP
-This manual page was written by Youhei SASAKI <uwabami at gfd-dennou.org>, for the Debian GNU/Linux system(but may be used by others).
-
diff --git a/debian/ruby-kramdown.manpages b/debian/ruby-kramdown.manpages
index 471141d..25ec556 100644
--- a/debian/ruby-kramdown.manpages
+++ b/debian/ruby-kramdown.manpages
@@ -1 +1 @@
-debian/kramdown.1
+man/man1/kramdown.1

-- 
ruby-kramdown.git



More information about the Pkg-ruby-extras-commits mailing list