aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/ao_read_markup_source.org
diff options
context:
space:
mode:
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