v0.1.0-alpha.1
Pre-release
Pre-release
·
41 commits
to main
since this release
0.1.0-alpha.1 2024-05-10 Abhishek Mishra abhishekmishra3@gmail.com
- This is the second alpha release of litpd.
- litpd now supports code fragment blocks which can be reused in code file
blocks.- Every reusable code fragment block is identified by a
code_id. - A
code_idis an alphanumeric identifier. - The code from a
code_idfragment can be included in anothercode_idor
code_filefragment by referring to it in the following form@<CODE_ID@>,
whereCODE_IDis the value of thecode_idattribute of the code block. - Example usage of
code_idis given in the tests.
- Every reusable code fragment block is identified by a
- The program also creates labels for
code_idandcode_filecode blocks,
showing the associatedidor `file. Again there are some examples in the
tests.