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/hub.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/hub.org')
-rw-r--r-- | org/hub.org | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/org/hub.org b/org/hub.org index 2852840f..705bbf21 100644 --- a/org/hub.org +++ b/org/hub.org @@ -19,8 +19,9 @@ * hub ** hub.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/hub.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/hub.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU require_relative 'constants' # constants.rb require_relative 'se' # se.rb @@ -247,8 +248,9 @@ __END__ ** hub_options.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/hub_options.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/hub_options.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU_Commandline begin require 'pathname' @@ -1899,8 +1901,9 @@ passing @opt as well is duplication check for fns & fnb ** hub_actions.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/hub_actions.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/hub_actions.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU_Hub_Actions class HubActions require_relative 'utils_composite' # utils_composite.rb @@ -2987,8 +2990,9 @@ __END__ ** hub_loop_markup_files.rb -#+BEGIN_SRC ruby :tangle "../lib/sisu/hub_loop_markup_files.rb" -<<sisu_document_header>> +#+HEADER: :tangle "../lib/sisu/hub_loop_markup_files.rb" +#+BEGIN_SRC ruby +#<<sisu_document_header>> module SiSU_Hub_Loops require_relative 'constants' # constants.rb require_relative 'se' # se.rb @@ -3109,8 +3113,7 @@ __END__ #+NAME: sisu_document_header #+BEGIN_SRC text -#encoding: utf-8 -=begin +encoding: utf-8 - Name: SiSU - Description: documents, structuring, processing, publishing, search @@ -3162,5 +3165,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 |