small readme changes
authorMichael Göhler <somebody.here@gmx.de>
Sun, 14 Sep 2014 13:29:41 +0000 (15:29 +0200)
committerMichael Göhler <somebody.here@gmx.de>
Sun, 14 Sep 2014 22:15:23 +0000 (00:15 +0200)
16 files changed:
Makefile
README.md
cstack.c
cstring.c
include/bitops.h
include/cstack.h
include/cstring.h
include/markdown.h
include/mdp.h
include/parser.h
include/viewer.h
markdown.c
mdp.c
parser.c
sample.md
viewer.c

index 7c0cbe7..d4df0d5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
 # Makefile
 # Copyright (C) 2014 Michael Goehler
 #
-# This file is part of mpd.
+# This file is part of mdp.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index c4a6f2b..ce9da7d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 
-## mpd - A command-line based markdown presentation tool.
+## mdp - A command-line based markdown presentation tool.
+
+![image](https://cloud.githubusercontent.com/assets/2237222/4264047/62cc07b8-3c12-11e4-8710-f2e5959200c8.png)
 
 ---
 
 
 _Horizontal rulers are used as slide separator._
 
-_Supports basic markdown formatting:_
+_Supports basic markdown formating:_
 
-- line wide formatting
+- line wide formating
     - headlines
     - code
     - quotes
 
-- in-line formatting
+- in-line formating
     - bold text
     - underlined text
 
+_Supports headers prefixed by @ symbol._
+
+- first two header lines are displayed as title and author
+  in top and bottom bar
+
+_Review sample.md for more details._
+
 ---
 
 *Controls:*
@@ -36,6 +45,6 @@ _Supports basic markdown formatting:_
   Space, Enter, Backspace - next/previous slide
 - Home - go to first slide
 - End - go to last slide
-- 0-9 - go to slide n
+- 1-9 - go to slide n
 - q - exit
 
index 2db539f..f56ee2c 100644 (file)
--- a/cstack.c
+++ b/cstack.c
@@ -2,7 +2,7 @@
  * An implementation of a char stack in heap memory.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index f7ea0a9..3eed860 100644 (file)
--- a/cstring.c
+++ b/cstring.c
@@ -2,7 +2,7 @@
  * An implementation of expandable c strings in heap memory.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 4e4cb62..df24067 100644 (file)
@@ -5,7 +5,7 @@
  * Macros to do bit operations on integer variables.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index c5005ad..bea73a6 100644 (file)
@@ -5,7 +5,7 @@
  * An implementation of a char stack in heap memory.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -57,4 +57,4 @@ int cstack_top(cstack_t *self, char c);
 int cstack_empty(cstack_t *self);
 void cstack_delete(cstack_t *self);
 
-#endif // !defined( CSTACK_H )
\ No newline at end of file
+#endif // !defined( CSTACK_H )
index ec028f3..631c7e3 100644 (file)
@@ -5,7 +5,7 @@
  * An implementation of expandable c strings in heap memory.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 1213ac7..7c786ef 100644 (file)
@@ -5,7 +5,7 @@
  * An implementation of markdown objects.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 5fe8c34..f57920b 100644 (file)
@@ -2,7 +2,7 @@
 #define MDP_H
 
 /*
- * mpd -- A command-line based markdown presentation tool.
+ * mdp -- A command-line based markdown presentation tool.
  * Copyright (C) 2014 Michael Goehler
  *
  * This program is free software: you can redistribute it and/or modify
index 9c11b2a..2690b20 100644 (file)
@@ -7,7 +7,7 @@
  * rules.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index e8e8fcb..e368615 100644 (file)
@@ -7,7 +7,7 @@
  * faded in 256 color mode.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index d0e18d6..45c4940 100644 (file)
@@ -2,7 +2,7 @@
  * An implementation of markdown objects.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
diff --git a/mdp.c b/mdp.c
index d641faa..9a71cd0 100644 (file)
--- a/mdp.c
+++ b/mdp.c
@@ -1,5 +1,5 @@
 /*
- * mpd -- A command-line based markdown presentation tool.
+ * mdp -- A command-line based markdown presentation tool.
  * Copyright (C) 2014 Michael Goehler
  *
  * This program is free software: you can redistribute it and/or modify
index 3474cfd..dc2677d 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -4,7 +4,7 @@
  * rules.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index 547e2b5..53afc65 100644 (file)
--- a/sample.md
+++ b/sample.md
@@ -2,7 +2,7 @@
 %author: Michael Göhler
 %date: 2014-09-14
 
-mpd
+mdp
 ===
 
 A command-line based presentation tool.
index 5494670..cede301 100644 (file)
--- a/viewer.c
+++ b/viewer.c
@@ -4,7 +4,7 @@
  * faded in 256 color mode.
  * Copyright (C) 2014 Michael Goehler
  *
- * This file is part of mpd.
+ * This file is part of mdp.
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by