Hi, I am wondering what does the false means in the assets section:
[
{
"_xml": "/home/nika-zhenya/Descargas/scielo/aop/aop.xml",
"assets": [
[
"img/img01.jpg",
false
],
[
"img/img02.jpg",
false
],
[
"img/img03.jpg",
false
],
[
"img/img04.jpg",
false
]
],
"dtd_errors": [],
"is_valid": true,
"style_errors": {}
}
]
I am guessing that is indicating that the asset wasn't localized, is that right? If yes, I am wondering what am I doing wrong, because the assets exists.
My project tree:
.
├── aop.docx
├── aop.md
├── aop.pdf
├── aop.xml
├── errores.txt
└── img
├── img01.jpg
├── img02.jpg
├── img03.jpg
└── img04.jpg
How I use stylechecker (implying I am in the parent project folder):
$ stylechecker aop.xml > errores.txt
or:
$ stylechecker --assetsdir img/ aop.xml > errores.txt
or even:
$ stylechecker --assetsdir ~/Descargas/scielo/aop/img/ aop.xml > errores.txt
I got the same
false in the log.