diff options
| author | Enno Boland <g@s01.de> | 2016-01-20 23:13:50 +0100 |
|---|---|---|
| committer | Enno Boland <g@s01.de> | 2016-01-20 23:13:50 +0100 |
| commit | 2181caf0c40f6b97bb424c4d75ae63ade9eb188a (patch) | |
| tree | 5b1f02095f295db8d6f8042d2f5195ea83a835ec | |
| parent | 0f3176f7533166f7c497d7f90c306c0159be96f5 (diff) | |
fix shortlinks when -n is not given. #4
| -rw-r--r-- | smu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,9 +36,9 @@ static void hprint(const char *begin, const char *end); /* esc static void process(const char *begin, const char *end, int isblock); /* Processes range between begin and end. */ /* list of parsers */ -static Parser parsers[] = { dounderline, dohtml, docomment, dolineprefix, +static Parser parsers[] = { dounderline, docomment, dolineprefix, dolist, doparagraph, dogtlt, dosurround, dolink, - doshortlink, doamp, doreplace }; + doshortlink, dohtml, doamp, doreplace }; static int nohtml = 0; static Tag lineprefix[] = { |