diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..c136d39 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,14 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**XBRL document** +Please provide a link to the XBRL document(s) with which you have encountered the issue + +**Describe the bug** +A clear and concise description of what the bug is. diff --git a/xbrl/transformations/__init__.py b/xbrl/transformations/__init__.py index 217ff51..9913503 100644 --- a/xbrl/transformations/__init__.py +++ b/xbrl/transformations/__init__.py @@ -18,6 +18,10 @@ Prefix: ixt Namespace: http://www.xbrl.org/inlineXBRL/transformation/2020-02-12 +Name: XII Transformation Registry 5 +Prefix: ixt +Namespace: http://www.xbrl.org/inlineXBRL/transformation/2022-02-16 + Name: SEC Specific Transformation Registry Prefix: ixt-sec Namespace: http://www.sec.gov/inlineXBRL/transformation/2015-08-31 @@ -591,6 +595,8 @@ def normalize(namespace: str, formatCode: str, value: str) -> str: return ixt4[formatCode](value) elif namespace == 'http://www.sec.gov/inlineXBRL/transformation/2015-08-31': return ixt_sec[formatCode](value) + elif namespace == 'http://www.xbrl.org/inlineXBRL/transformation/2022-02-16': + return ixt4[formatCode](value) else: raise RegistryNotSupported(namespace) except KeyError: