33 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| # This file contains the default werc settings.
 | |
| #
 | |
| # To change any of this settings globally, copy them to etc/initrc.local and
 | |
| # customize them there.
 | |
| #
 | |
| # Some settings can also be set for a specific site in their respective
 | |
| # _werc/config or their master-site _werc/config file.
 | |
| 
 | |
| # General options
 | |
| 
 | |
| # Location of your Plan 9 from User Space installation (usually /usr/local/plan9)
 | |
| plan9port=$PLAN9
 | |
| 
 | |
| # Path, make sure the plan9port /bin directory is included before /bin
 | |
| path=($plan9port/bin/ ./bin/ /bin/ /usr/bin/ ./bin/contrib/)
 | |
| 
 | |
| # Directory where your site(s) live ($site here is your domain name, eg., example.com)
 | |
| sitedir=sites/$site
 | |
| 
 | |
| # Set this to your favorite markdown formatter, eg., markdown.pl (fproc_cache
 | |
| # is a wrapper around a script it takes as an argument, in the default
 | |
| # configuration markdown.pl, that caches output)
 | |
| # Note that some werc components assume a markdown-like formatter, but all
 | |
| # major functionality should should be formatter agnostic.
 | |
| formatter=(fproc_cache.rc markdown.pl)
 | |
| 
 | |
| # Enable debugging, to disable set to ()
 | |
| debug=true
 | |
| 
 | |
| # Default site variables, must be set in initrc.local or _werc/config, only siteTitle is required.
 | |
| #masterSite=cat-v.org # Not required!
 | |
| #siteTitle='cat-v'
 | |
| #siteSubTitle='Considered harmful'
 | 
