diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2022-03-09 21:05:51 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2022-03-11 12:29:57 -0500 |
commit | 0a87b8fbd5b013b8da07f6bc30360ff735217367 (patch) | |
tree | 16cd52e499f0cc9a919c8d0d32a3932573ebbfcd /org/shared.org | |
parent | org-mode, track bin files (diff) |
org-mode and ruby file headers modified
- org-mode file headers modified to preserve
org-mode ruby syntax highlighting
Diffstat (limited to 'org/shared.org')
-rw-r--r-- | org/shared.org | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/org/shared.org b/org/shared.org index ff88f99c..b6e98f08 100644 --- a/org/shared.org +++ b/org/shared.org @@ -19,8 +19,9 @@ * shared ** shared_sem.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/shared_sem.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/shared_sem.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU_Sem require_relative 'dp' # dp.rb class Tags @@ -125,8 +126,9 @@ __END__ ** shared_images.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/shared_images.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/shared_images.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU_Images require_relative 'se_hub_particulars' # se_hub_particulars.rb class Source @@ -212,8 +214,9 @@ __END__ ** shared_markup_alt.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/shared_markup_alt.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/shared_markup_alt.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU_TextRepresentation class Alter def initialize(x) @@ -498,8 +501,9 @@ __END__ ** shared_metadata.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/shared_metadata.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/shared_metadata.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU_Metadata require_relative 'xml_parts' # xml_parts.rb require_relative 'xml_shared' # xml_shared.rb @@ -1821,8 +1825,9 @@ __END__ * constants ** constants.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/constants.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/constants.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> YEAR='2021' Sfx={ txt: '.txt', @@ -2160,8 +2165,9 @@ Iu ⌠ 8992 Il ⌡ <7 ⌈ 8968 >7 ⌉ 8969 7< ⌊ 8970 7> ⌋ 8971 * generic ** generic_parts.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/generic_parts.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/generic_parts.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU_Parts_Generic def the_url def urify(uri) @@ -2243,8 +2249,7 @@ __END__ #+NAME: sisu_document_header #+BEGIN_SRC text -#encoding: utf-8 -=begin +encoding: utf-8 - Name: SiSU - Description: documents, structuring, processing, publishing, search @@ -2296,5 +2301,4 @@ __END__ <https://git.sisudoc.org/projects/> <https://git.sisudoc.org/projects/?p=software/sisu.git;a=summary> <https://git.sisudoc.org/projects/?p=markup/sisu-markup-samples.git;a=summary> -=end #+END_SRC |