-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrender.ini.default
37 lines (37 loc) · 1.58 KB
/
render.ini.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
; generate a Table of Contents
toc = 1
; start with the ToC hidden (ignored if toc isn't generated)
toc_hidden = 1
; provide a link to the original text
text_version = 1
; suffix to use for original text version
; (be sure your mod_rewrite rules match this)
text_suffix = "text"
; use the first heading found as the document's title
title_from_heading = 1
; how to handle metadata
; "ignore": Just send the text to the Markdown parser as is, with or without metadata.
; "remove": Look for metadata and strip it from the document before Markdown processing.
; "table" : Look for metadata and display it in an HTML table at the top of the document.
metadata = "table"
; links from metadata
; If the metadata contains an attribute listed below, you can have the values turned into links using link_pattern.
link_attrs[] = "tags"
link_attrs[] = "author"
; "%k" will be replaced with the name of the attribute and %v with the value. It can be an absolute or relative address.
; examples:
; link_pattern = "http://www.mysite.tld/%k/%v" ; absolute address
; link_pattern = "http://www.mysite.tld/search/?q=%k:%v" ; search pattern
; link_pattern = "/%k/%v" ; relative address
; link_pattern = "/tags/%v" ; just use the value, ignore the attribute name
link_pattern = "/search/?q=%k:%v"
; append a link to every heading using this text (PHP only)
; set to "" for no permalinks
; pilcrow ¶
; infinity ∞
; pointing hand ☚
permalink = "¶"
; use SmartyPants (PHP only)
smartypants = 1
; stylesheet for Codehilite extension (Python only)
codehilite_style = "/styles/pygments/default.css"