Skip to content

Commit

Permalink
feat(make) Fix filename. Set the lang attribute. #10
Browse files Browse the repository at this point in the history
  • Loading branch information
skounis committed Feb 16, 2023
1 parent a038217 commit 9763bbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ GENERATED= arf.html \
all: $(GENERATED)

# Gerenate html, doc from the html
arf.html: arf.md
pandoc -s -o $@ $< --metadata title="The European Digital Identity Wallet Architecture and Reference Framework"
arf.html: ARF.md
pandoc -s -o $@ $< --metadata title="The European Digital Identity Wallet Architecture and Reference Framework" --metadata lang="en"
pandoc -o $@.docx $@

# Generate docx
arf.docx: arf.md
arf.docx: ARF.md
pandoc -o $@ $<

clean:
Expand Down

0 comments on commit 9763bbd

Please sign in to comment.