fixed coding style + minor changes
authorMichael Göhler <somebody.here@gmx.de>
Tue, 27 Oct 2015 23:25:59 +0000 (00:25 +0100)
committerMichael Göhler <somebody.here@gmx.de>
Tue, 27 Oct 2015 23:25:59 +0000 (00:25 +0100)
long-lines.md [new file with mode: 0644]
sample.md
src/parser.c
src/viewer.c

diff --git a/long-lines.md b/long-lines.md
new file mode 100644 (file)
index 0000000..ea4c6e9
--- /dev/null
@@ -0,0 +1,9 @@
+%title: The Road Not Taken
+%author: Robert Frost
+
+Two roads diverged in a yellow wood, and sorry I could not travel both. And be one traveler, long I stood, and looked down one as far as I could. To where it bent in the undergrowth.
+
+Then took the other, as just as fair, and having perhaps the better claim. Because it was grassy and wanted wear, though as for that the passing there Had worn them really about the same. And both that morning equally lay, in leaves no step had trodden black.
+
+Oh, I kept the first for another day! Yet knowing how way leads on to way. I doubted if I should ever come back, I shall be telling this with a sigh. Somewhere ages and ages hence: Two roads diverged in a wood, and I. I took the one less traveled by, and that has made all the difference.
+
index 8f6b053..42b6930 100644 (file)
--- a/sample.md
+++ b/sample.md
@@ -106,21 +106,19 @@ You can also use [pandoc](http://pandoc.org/demo/example9/pandocs-markdown.html)
 Use at least three ~ chars to open and at least as many or 
 more ~ for closing.
 
-~~~~~
-~~~
-int main(int argc, char \*argv[]) {
-    printf("%s\\n", "Hello world!");
-}
-~~~
-~~~~~~~
+\~~~ {.numberLines}
+\int main(int argc, char \*argv[]) {
+\    printf("%s\\n", "Hello world!");
+\}
+\~~~~~~~~~~~~~~~~~~
 
 becomes
 
-~~~
+~~~ {.numberLines}
 int main(int argc, char \*argv[]) {
     printf("%s\\n", "Hello world!");
 }
-~~~
+~~~~~~~~~~~~~~~~~~
 
 Pandoc attributes (like ".numberlines" etc.) will be ignored
 
index d81a2cb..f0d4ed3 100644 (file)
@@ -90,8 +90,9 @@ deck_t *markdown_load(FILE *input) {
                 sc++;
 
             } else if(CHECK_BIT(bits, IS_TILDE_CODE) && CHECK_BIT(bits, IS_EMPTY)) {
-               // remove tilde code markers
-               (text->reset)(text);
+                // remove tilde code markers
+                (text->reset)(text);
+
             } else {
 
                 // if slide ! has line
@@ -346,23 +347,23 @@ int markdown_analyse(cstring_t *text, int prev) {
 
     // IS_TILDE_CODE
     if (wcsncmp(text->value, L"~~~", 3) == 0) {
-           int tildes_in_line = next_nontilde(text, 0);
-           if (tildes_in_line >= num_tilde_characters) {
-                   if (num_tilde_characters > 0) {
-                           num_tilde_characters = 0;
-                   } else {
-                           num_tilde_characters = tildes_in_line;
-                   }
-                   SET_BIT(bits, IS_EMPTY);
-                   SET_BIT(bits, IS_TILDE_CODE);
-                   return bits;
-           }
+        int tildes_in_line = next_nontilde(text, 0);
+        if (tildes_in_line >= num_tilde_characters) {
+            if (num_tilde_characters > 0) {
+                num_tilde_characters = 0;
+            } else {
+                num_tilde_characters = tildes_in_line;
+            }
+            SET_BIT(bits, IS_EMPTY);
+            SET_BIT(bits, IS_TILDE_CODE);
+            return bits;
+        }
     }
 
     if (num_tilde_characters > 0) {
-           SET_BIT(bits, IS_CODE);
-           SET_BIT(bits, IS_TILDE_CODE);
-           return bits;
+        SET_BIT(bits, IS_CODE);
+        SET_BIT(bits, IS_TILDE_CODE);
+        return bits;
     }
 
     // IS_STOP
@@ -647,7 +648,6 @@ int next_nonblank(cstring_t *text, int i) {
     return i;
 }
 
-
 int prev_blank(cstring_t *text, int i) {
     while ((i > 0) && !iswspace((text->value)[i]))
         i--;
index 0021e79..a05f42c 100644 (file)
@@ -577,10 +577,10 @@ void add_line(WINDOW *window, int y, int x, line_t *line, int max_cols, int colo
     // IS_CODE
     if(CHECK_BIT(line->bits, IS_CODE)) {
 
-       if (!CHECK_BIT(line->bits, IS_TILDE_CODE)) {
-               // set static offset for code
-               offset = CODE_INDENT;
-       }
+    if (!CHECK_BIT(line->bits, IS_TILDE_CODE)) {
+        // set static offset for code
+        offset = CODE_INDENT;
+    }
 
         // reverse color for code blocks
         if(colors)