removed alpha warning
[smdp.git] / mdp.1
1 .\" This is the groff documentation source for MDP
2 .\"
3 .\" Preview with: groff -man -Tascii mdp.1
4 .\"           or: man -l mdp.1
5 .\"
6 .
7 .
8 .TH MDP 1 "2015-04-10" "User Commands"
9 .SH NAME
10 mdp \- A command-line based
11 markdown presentation tool
12 .SH SYNOPSIS
13 .B mdp
14 .RI [ OPTION ].\|.\|.\|
15 .RI [ FILE ]
16 .
17 .SH DESCRIPTION
18 .B mdp
19 is a command-line program that allows you to make elegant presentations from
20 .B markdown formatted
21 .IR FILE s.
22 .PP
23 It is as easy as write your presentation content in the text editor of your
24 preference and launch the presentation from the command-line.
25 .
26 .SH OPTIONS
27 .SS "Input Control"
28 .TP
29 .IR FILE
30 The input file from which the presentation is read. If no file is specified,
31 or if the file name is
32 .BR \- ","
33 the presentation is read from standard input.
34 .SS "Output Control"
35 .TP
36 .BR \-f ", " \-\^\-nofade
37 Disable color fading in 256 color mode.
38 .TP
39 .BR \-i ", " \-\^\-invert
40 Swap black and white color.
41 .TP
42 .BR \-t ", " \-\^\-notrans
43 Disable transparency in transparent terminal.
44 .
45 .SS "Miscellaneous Options"
46 .TP
47 .BR \-h ", " \-\^\-help
48 Display usage message and exit.
49 .TP
50 .BR \-d ", " \-\^\-debug
51 Enable debug messages on STDERR. Add multiple times to increases debug level.
52 .
53 .SH MARKDOWN FORMATTING
54 For a complete list of supported markups, refer the sample presentation
55 (sample.md) provided alongside
56 .BR mdp ,\|
57 or online available at
58 .IR https://github.com/visit1985/mdp .
59 .SS "Slides"
60 The input
61 .IR FILE
62 is split into multiple slides by horizontal rules. Each consisting of at least
63 3
64 .B \-\-\-
65 or
66 .B ***
67 characters on a single line.
68 .B This line must be prefixed by an completely empty line.
69 It can also contain spaces but no other characters.
70 .PP
71 If any slide is too large to fit into your current screen, an error message
72 will be displayed at the moment the presentation is launched.
73 .
74 .SS "Line-by-Line Mode"
75 .SS "Block-by-Block Mode"
76 A single
77 .BR "<br>" ", " "<BR>" " or " "^"
78 on an otherwise empty line signals
79 .B mdp
80 to stop output of the current slide (stop point) and wait for a key-press by
81 the user.
82 .PP
83 This enables the user to display bullet points or list items one by one
84 (line by line) or block by block.
85 .
86 .SS "Headers"
87 .B mdp
88 supports header lines in the format of
89 .BR @ "[DESCRIPTION] " [VALUE]
90 The first two header lines are displayed as title and author in top and
91 bottom bar.
92 .PP
93 Headers are only recognized at the top of the input
94 .IR FILE .
95 .
96 .SS "Line spanning markup"
97 Supported are headlines, code blocks, quotes and unordered lists.
98 .
99 .SS "In-line markup"
100 As well as bold text, underlined text and in-line code.
101 .
102 .SH COLOR SUPPORT
103 Most terminals are able to display 256 colors these days. But some of them
104 enable only 16 colors by default. To enjoy
105 .BR mdp "'s"
106 full capabilities, these terminals need to be signaled to enable 256 color
107 mode. This is usually done by setting the TERM environment variable.
108 .PP
109 .BR "export TERM=xterm-256color"
110 .
111 .SH KEYBOARD CONTROLS
112 .TP
113 .BR "h, j, k, l, Arrow keys, Space, Enter, Backspace, Page Up, Page Down"
114 Display next/previous slide or continue after a stop point.
115 .TP
116 .BR "g, Home"
117 Jump to first slide.
118 .TP
119 .BR "G, End"
120 Jump to last slide.
121 .TP
122 .BR "1..N"
123 Jump to
124 .BR N "th"
125 slide.
126 .TP
127 .BR "r"
128 Reload the input
129 .IR FILE .\|
130 This key is disabled if input was read from standard input.
131 .TP
132 .BR "q"
133 Exit
134 .BR mdp "."
135 .
136 .SH AUTHOR
137 Written by Michael Goehler and others, see
138 .IR https://github.com/visit1985/mdp/blob/master/AUTHORS "."
139 .SH COPYRIGHT
140 Copyright (C) 2015 Michael Goehler
141 .PP
142 This is free software; see the source for copying conditions. There is NO
143 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.