mirror of
https://github.com/ISEAL-Community/iseal-core.git
synced 2024-11-22 14:55:03 +01:00
util/generate-hugo-content.py: don't split element name on dash
We don't need to do this anymore since we adopted the new clusters and cleaned up the element name field.
This commit is contained in:
parent
b8f2819556
commit
fd3be3163f
@ -17,18 +17,6 @@ def parseSchema(schema_df):
|
|||||||
# Iterate over all rows (the "index, row" syntax allows us to access column
|
# Iterate over all rows (the "index, row" syntax allows us to access column
|
||||||
# headings in each row, which isn't possible if we just do row).
|
# headings in each row, which isn't possible if we just do row).
|
||||||
for index, row in schema_df.iterrows():
|
for index, row in schema_df.iterrows():
|
||||||
# Split the element name on " - " because the category is duplicated
|
|
||||||
# here, but in a format that is more difficult to use than the "idss
|
|
||||||
# module category" field. I will # encourage Peter to modify this
|
|
||||||
# field so it is less descriptive because that's what the "idss module
|
|
||||||
# category" field does (and more consistently).
|
|
||||||
if " - " in row["element name"]:
|
|
||||||
# We only want the specific element name, not the category, ie:
|
|
||||||
#
|
|
||||||
# [Category] [Element]
|
|
||||||
# FSC audit - sampling system
|
|
||||||
element_name = row["element name"].split(" - ")[1]
|
|
||||||
else:
|
|
||||||
element_name = row["element name"]
|
element_name = row["element name"]
|
||||||
|
|
||||||
# Make sure element name is URL friendly because we need to use it in
|
# Make sure element name is URL friendly because we need to use it in
|
||||||
|
Loading…
Reference in New Issue
Block a user