View source with raw comments or as raw
    1/*  Part of SWI-Prolog
    2
    3    Author:        Jan Wielemaker
    4    E-mail:        J.Wielemaker@cs.vu.nl
    5    WWW:           http://www.swi-prolog.org
    6    Copyright (C): 2013, VU University Amsterdam
    7
    8    This program is free software; you can redistribute it and/or
    9    modify it under the terms of the GNU General Public License
   10    as published by the Free Software Foundation; either version 2
   11    of the License, or (at your option) any later version.
   12
   13    This program is distributed in the hope that it will be useful,
   14    but WITHOUT ANY WARRANTY; without even the implied warranty of
   15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   16    GNU General Public License for more details.
   17
   18    You should have received a copy of the GNU General Public
   19    License along with this library; if not, write to the Free Software
   20    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   21
   22    As a special exception, if you link this library with other files,
   23    compiled with a Free Software compiler, to produce an executable, this
   24    library does not by itself cause the resulting executable to be covered
   25    by the GNU General Public License. This exception does not however
   26    invalidate any other reasons why the executable file might be covered by
   27    the GNU General Public License.
   28*/
   29
   30:- module(markdown,
   31	  [ markdown_dom/2		% +MarkDown, -DOM
   32	  ]).   33:- use_module(library(sgml)).   34:- use_module(library(process)).   35:- use_module(library(error)).

Parse markdown documents into a DOM

*/

   40:- create_prolog_flag(markdown_program, markdown, []).
 markdown_dom(+Input, -DOM) is det
Process markdown input into an HTML DOM structure compatible to load_structure/3 and html//1 as provided by library(http/html_write).
Arguments:
Input- is either a term stream(+Stream) or the name of a file.
   51markdown_dom(stream(Stream), DOM) :- !,
   52	must_be(stream, Stream),
   53	current_prolog_flag(markdown_program, Prog),
   54	process_create(path(Prog), [],
   55		       [ stdin(pipe(In)),
   56			 stdout(pipe(Out)),
   57			 process(PID)
   58		       ]),
   59	thread_create(( copy_stream_data(Stream, In),
   60			close(In)
   61		      ), _, [detached(true)]),
   62	load_structure(Out, DOM, [dialect(xml)]),
   63	process_wait(PID, _).
   64markdown_dom(File, DOM) :-
   65	current_prolog_flag(markdown_program, Prog),
   66	process_create(path(Prog), [file(File)],
   67		       [ stdout(pipe(Out)),
   68			 process(PID)
   69		       ]),
   70	load_structure(Out, DOM, [dialect(xml)]),
   71	process_wait(PID, _)