~crc_/retroforth

c44b9003a1b5cc6be3e3af645f24994d5dceebd4 — crc 1 year, 5 months ago 52c8505
fix use of deprecated word in markdown export examples

FossilOrigin-Name: 9bcc617569f8dc0eba33c1b54abc621dbdbf81f02cf7592f64dd893d1b7d7a24
2 files changed, 2 insertions(+), 2 deletions(-)

M example/markdown-to-xhtml.retro
M example/markdown.retro
M example/markdown-to-xhtml.retro => example/markdown-to-xhtml.retro +1 -1
@@ 281,7 281,7 @@ headers should look like:
  over '####_ s:begins-with? or ;

:format:head
  ASCII:SPACE s:split
  ASCII:SPACE s:split/char
  '#   [ '<span_class="h1"> s:put n:inc s:put '</span> s:put nl ] s:case
  '##  [ '<span_class="h2"> s:put n:inc s:put '</span> s:put nl ] s:case
  '### [ '<span_class="h3"> s:put n:inc s:put '</span> s:put nl ] s:case

M example/markdown.retro => example/markdown.retro +1 -1
@@ 107,7 107,7 @@ headers should look like:
      [ '### s:begins-with? ] tri or or ;

:format:head
  ASCII:SPACE s:split
  ASCII:SPACE s:split/char
  '#   [ '<h1> s:put n:inc s:put '</h1> s:put nl ] s:case
  '##  [ '<h2> s:put n:inc s:put '</h2> s:put nl ] s:case
  '### [ '<h3> s:put n:inc s:put '</h3> s:put nl ] s:case