diff options
-rw-r--r-- | _plugins/linter.rb | 6 | ||||
-rw-r--r-- | music/choro-da-saudade.ly | 1 | ||||
-rw-r--r-- | music/dengoso.ly | 1 | ||||
-rw-r--r-- | music/marcha-dos-marinheiros.ly | 1 |
4 files changed, 7 insertions, 2 deletions
diff --git a/_plugins/linter.rb b/_plugins/linter.rb index 8078dae..4972106 100644 --- a/_plugins/linter.rb +++ b/_plugins/linter.rb @@ -202,10 +202,12 @@ module Jekyll raise "Missing '#{ly}' file present in _config.yml." end - point_and_click_off = open(ly) { |f| f.include? "\\pointAndClickOff\n" } - unless point_and_click_off then + unless open(ly) { |f| f.include? "\\pointAndClickOff\n" } then raise "Missing '\\pointAndClickOff' in '#{ly}'" end + unless open(ly) { |f| f.include? "#(ly:set-option 'embed-source-code #t)\n" } then + raise "Missing '#(ly:set-option 'embed-source-code #t)' in '#{ly}'" + end end end diff --git a/music/choro-da-saudade.ly b/music/choro-da-saudade.ly index 08b1c6e..f8fe7ff 100644 --- a/music/choro-da-saudade.ly +++ b/music/choro-da-saudade.ly @@ -1,5 +1,6 @@ \version "2.20.0" \pointAndClickOff +#(ly:set-option 'embed-source-code #t) \include "common.ly" \include "guitar.ly" diff --git a/music/dengoso.ly b/music/dengoso.ly index f0cc730..dc28c57 100644 --- a/music/dengoso.ly +++ b/music/dengoso.ly @@ -1,5 +1,6 @@ \version "2.20.0" \pointAndClickOff +#(ly:set-option 'embed-source-code #t) \include "common.ly" \include "guitar.ly" diff --git a/music/marcha-dos-marinheiros.ly b/music/marcha-dos-marinheiros.ly index f654298..66830f4 100644 --- a/music/marcha-dos-marinheiros.ly +++ b/music/marcha-dos-marinheiros.ly @@ -1,5 +1,6 @@ \version "2.20.0" \pointAndClickOff +#(ly:set-option 'embed-source-code #t) \include "common.ly" \include "guitar.ly" |