Compare commits

..

No commits in common. "60ee2a6feb9e5092341a062ce37af19485045344" and "b5c845f90c384eff19d0493bbcfc04537ab90d92" have entirely different histories.

3 changed files with 4 additions and 7 deletions

View file

@ -1,9 +1,3 @@
## 0.2.0a2 (2024-12-11)
### Fix
- user_data and output are not plugins
## 0.2.0a1 (2024-11-28)
### Fix

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.cli"
version = "0.2.0a2"
version = "0.2.0a1"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "CLI for Rougail"

View file

@ -64,6 +64,9 @@ def _main():
output_name = rougailconfig["step.output"]
# structural
rougail = Rougail(rougailconfig)
for user_data_name in user_data_names:
rougail.converted.plugins.append("user_data_" + user_data_name)
rougail.converted.plugins.append("output_" + output_name)
config = rougail.get_config()
# data user
if not user_data_names: