Files
Thun/docs/yow/Makefile
T
Simon Forman 188f6e42c7 Goodness, that was brutal.
The `!-` name doesn't work as a title for the conversion from ReST to
Markdown.  Maybe that's a bug in Pandoc, but more likely it's a legit
syntax gotcha in Mearkdown itself.

    !-
    ^^^^

In ReST turns into:

    !-\^\^\^\^

In the Markdown.  :(

It should be:

    # !-

Instead.
2022-03-23 13:02:19 -07:00

15 lines
211 B
Makefile

rsts = $(wildcard *.rst)
mds = $(patsubst %.rst,%.md,$(rsts))
all: $(mds)
clean:
$(RM) -v $(mds)
$(mds): %.md : %.rst
#pandoc $< -o $@
sed -e 's/^#/##/' $@ > ../reference/$@
# cp -vf $@ ../reference/