add: numerical value is now displayed in the documentation
parent
57a2852f70
commit
9792a29d8a
|
@ -97,7 +97,9 @@ def asciidoc(content=False, adoc=doc, t='title'):
|
||||||
content = "\n{} \n".format(value)
|
content = "\n{} \n".format(value)
|
||||||
except:
|
except:
|
||||||
content = "\n{} \n".format(content)
|
content = "\n{} \n".format(content)
|
||||||
|
elif t == 'numerical_value':
|
||||||
|
(n, value) = content.split(":", 1)
|
||||||
|
content = "\nAssociated numerical value=\"{}\" \n".format(value)
|
||||||
adoc = adoc + content
|
adoc = adoc + content
|
||||||
return adoc
|
return adoc
|
||||||
|
|
||||||
|
@ -137,6 +139,8 @@ for taxonomy in taxonomies:
|
||||||
doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['expanded']), adoc=doc, t='description')
|
doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['expanded']), adoc=doc, t='description')
|
||||||
if predicate.get('description'):
|
if predicate.get('description'):
|
||||||
doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['description']), adoc=doc, t='description')
|
doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['description']), adoc=doc, t='description')
|
||||||
|
if predicate.get('numerical_value'):
|
||||||
|
doc = asciidoc(content=machineTag(namespace=namespace, predicate=predicate['numerical_value']), adoc=adoc, t='description')
|
||||||
else:
|
else:
|
||||||
print(machineTag(namespace=namespace, predicate=predicate['value']))
|
print(machineTag(namespace=namespace, predicate=predicate['value']))
|
||||||
if args.e:
|
if args.e:
|
||||||
|
@ -154,6 +158,8 @@ for taxonomy in taxonomies:
|
||||||
doc = asciidoc(content=machineTag(namespace=namespace, predicate=v['expanded']), adoc=doc, t='description')
|
doc = asciidoc(content=machineTag(namespace=namespace, predicate=v['expanded']), adoc=doc, t='description')
|
||||||
if 'description' in v:
|
if 'description' in v:
|
||||||
doc = asciidoc(content=machineTag(namespace=namespace, predicate=v['description']), adoc=doc, t='description')
|
doc = asciidoc(content=machineTag(namespace=namespace, predicate=v['description']), adoc=doc, t='description')
|
||||||
|
if v.get('numerical_value'):
|
||||||
|
doc = asciidoc(content=machineTag(namespace=namespace, predicate=v['numerical_value']), adoc=doc, t='numerical_value')
|
||||||
else:
|
else:
|
||||||
print(machineTag(namespace=namespace, predicate=e['predicate'], value=v['value']))
|
print(machineTag(namespace=namespace, predicate=e['predicate'], value=v['value']))
|
||||||
if args.e:
|
if args.e:
|
||||||
|
|
Loading…
Reference in New Issue