aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/ao_read_markup_source.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2016-03-17 22:38:32 -0400
committerRalph Amissah <ralph@amissah.com>2016-03-17 23:53:20 -0400
commit3e81eda3abd27ab6beadb3f183bcbf413ecd52b8 (patch)
treeed7037df5db5c66d310a94dd0d4005d688e17764 /org/ao_read_markup_source.org
parenttrack (diff)
org file headers updated
Diffstat (limited to 'org/ao_read_markup_source.org')
-rw-r--r--org/ao_read_markup_source.org14
1 files changed, 7 insertions, 7 deletions
diff --git a/org/ao_read_markup_source.org b/org/ao_read_markup_source.org
index d6cb0dc..d0aa4f9 100644
--- a/org/ao_read_markup_source.org
+++ b/org/ao_read_markup_source.org
@@ -3,10 +3,10 @@
#+EMAIL: ralph.amissah@gmail.com
#+STARTUP: indent
#+LANGUAGE: en
-#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil -:t f:t *:t <:t
+#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil _:nil -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+OPTIONS: author:nil email:nil creator:nil timestamp:nil
-#+OPTIONS: ^:nil _:nil
+#+PROPERTY: header-args :padline no :exports none :noweb yes
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+FILETAGS: :sdp:rel:ao:
@@ -17,7 +17,7 @@
** source string :string:
#+name: ao_read_markup_source
-#+BEGIN_SRC d :exports none
+#+BEGIN_SRC d
final private string markupSourceString(in char[] fn_src) {
enforce(
exists(fn_src)!=0,
@@ -45,7 +45,7 @@ final private string markupSourceString(in char[] fn_src) {
** source line array :array:
#+name: ao_read_markup_source
-#+BEGIN_SRC d :exports none
+#+BEGIN_SRC d
final private char[][] markupSourceLineArray(in string src_text) {
char[][] source_line_arr =
split(cast(char[]) src_text, rgx.line_delimiter);
@@ -55,7 +55,7 @@ final private char[][] markupSourceLineArray(in string src_text) {
** insert source content raw line array :array:
#+name: ao_read_markup_source
-#+BEGIN_SRC d :exports none
+#+BEGIN_SRC d
final char[][] markupInsertSourceContentRawLineArray(in char[] fn_src) {
enforce(
match(fn_src, rgx.src_fn_find_inserts),
@@ -69,7 +69,7 @@ final char[][] markupInsertSourceContentRawLineArray(in char[] fn_src) {
** source content raw line array :array:
#+name: ao_read_markup_source
-#+BEGIN_SRC d :exports none
+#+BEGIN_SRC d
final char[][] markupSourceContentRawLineArray(in char[] fn_src) {
enforce(
match(fn_src, rgx.src_pth),
@@ -84,7 +84,7 @@ final char[][] markupSourceContentRawLineArray(in char[] fn_src) {
* tangles :tangle:
** code structure: :ao_read_markup_source.d:
#+name: tangle_ao_read_markup_source
-#+BEGIN_SRC d :tangle ../lib/sdp/ao_read_markup_source.d :padline no :exports none :noweb yes
+#+BEGIN_SRC d :tangle ../lib/sdp/ao_read_markup_source.d
/*
read markup source
ao_read_markup_source.d