This updates the docs extraction script to be able to handle preset properties (e.g. titles); meaning after a release this script can be called with the released version and documentation will be pre-processed automatically.
[root@centos8 test]# cat source/test/bla.md
---
title: Bla die Bla / Test
---
# Title
Description
[root@centos8 test]# cat target/1.0.0/celix/test/bla.md
---
title: Bla die Bla / Test
type: celix-doc
version: 1.0.0
---
# Title
Description
[root@centos8 test]# cat source/bla.md
---
title: Bla die ba 2
type: celix-alternative-doc
---
# Title
Description
[root@centos8 test]# cat target/1.0.0/celix/bla.md
---
title: Bla die ba 2
type: celix-alternative-doc
version: 1.0.0
---
# Title
Description
This updates the docs extraction script to be able to handle preset properties (e.g. titles); meaning after a release this script can be called with the released version and documentation will be pre-processed automatically.
Tested using:
Xref: https://github.com/apache/celix/pull/271