Sha256: 74044a26a91999ee7c26e687414552cba0c3c61205b102865f3e3ba65915a601

Contents?: true

Size: 851 Bytes

Versions: 95

Compression:

Stored size: 851 Bytes

Contents

/*
 * docheader -- get values from the document header
 *
 * Copyright (C) 2007 David L Parsons.
 * The redistribution terms are provided in the COPYRIGHT file that must
 * be distributed with this source code.
 */
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

#include "cstring.h"
#include "markdown.h"
#include "amalloc.h"

#define afterdle(t)	(T((t)->text) + (t)->dle)

char *
mkd_doc_title(Document *doc)
{
    if ( doc && doc->headers )
	return afterdle(doc->headers);
    return 0;
}


char *
mkd_doc_author(Document *doc)
{
    if ( doc && doc->headers && doc->headers->next )
	return afterdle(doc->headers->next);
    return 0;
}


char *
mkd_doc_date(Document *doc)
{
    if ( doc && doc->headers && doc->headers->next && doc->headers->next->next )
	return afterdle(doc->headers->next->next);
    return 0;
}

Version data entries

95 entries across 92 versions & 12 rubygems

Version Path
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-rolls-0.1.0 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.8.0.pre vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.7.1 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.7.0 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.7.0.pre2 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.7.0.pre vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.6.2 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.6.1 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
resque-pool-0.3.0 vendor/bundle/ruby/1.8/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.6.0 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.5.4 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
resque-pool-0.3.0.beta.2 vendor/bundle/ruby/1.8/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.5.3 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.5.2 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.5.1 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.5.0 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.4.1 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.4.0 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c
challah-0.3.5 vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.c