Skip to content

Commit

Permalink
Fix mode declaration in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rla committed Jan 2, 2020
1 parent 661e125 commit 4b459d5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version:=$(shell swipl -q -s pack -g 'version(V),writeln(V)' -t halt)
packfile=markdown-$(version).tgz
remote=packs@packs.rlaanemets.com:/usr/share/nginx/packs.rlaanemets.com/markdown
remote=sites@rlaanemets.com:/sites/packs.rlaanemets.com/public/markdown

test:
swipl -s tests/tests.pl -g run_tests,halt -t 'halt(1)'
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ See <http://packs.rlaanemets.com/markdown/doc/md_parse.html> for the top-level m

## Changelog

* 2020-01-02 version 0.0.3. Fixed mode declaration in documentation.
* 2014-02-26 version 0.0.2. Fixed HTTPS link in angled brackets. Trimmed bottom of code block.
* 2014-01-14 version 0.0.1

Expand Down
2 changes: 1 addition & 1 deletion pack.pl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name(markdown).
version('0.0.2').
version('0.0.3').
title('Markdown parser for SWI-Prolog').
author('Raivo Laanemets', 'http://rlaanemets.com/').
home('https://github.com/rla/prolog-markdown').
4 changes: 2 additions & 2 deletions prolog/md/md_line.pl
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
lookahead(Code), [Code] -->
[Code].

%! string_limit(-Codes, +Limit)// is multidet.
%! string_limit(-Codes, +Limit)// is multi.
%
% Same as string//1 but with
% a length limit.
Expand All @@ -118,7 +118,7 @@
{ Next is Limit - 1 },
string_limit(Codes, Next).

%! inline_string(-Codes)// is multidet.
%! inline_string(-Codes)// is multi.
%
% Takes as few symbol codes as possible
% up to line end.
Expand Down

0 comments on commit 4b459d5

Please sign in to comment.