diff options
Diffstat (limited to 'format.c')
| -rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -73,7 +73,7 @@ d_char *not_really_markdown(char *content, d_char **f_content) | |||
| 73 | } | 73 | } |
| 74 | else | 74 | else |
| 75 | if (xs_startswith(v, "http")) { | 75 | if (xs_startswith(v, "http")) { |
| 76 | xs *s1 = xs_fmt("<a href=\"%s\">%s</a>", v, v); | 76 | xs *s1 = xs_fmt("<a href=\"%s\" target=\"_blank\">%s</a>", v, v); |
| 77 | wrk = xs_str_cat(wrk, s1); | 77 | wrk = xs_str_cat(wrk, s1); |
| 78 | } | 78 | } |
| 79 | else | 79 | else |