We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When placing markdown into a source description, it renders as the jinja string rather than markdown.
The jinja string in the sources description is rendered as the string in the documentation. Schema.yml file:
markdown file:
rendered description:
The jinja string is returned instead of rendered markdown like in models descriptions Should render like this:
The output of dbt --version:
dbt --version
installed version: 0.13.1 latest version: 0.13.1 Up to date!
The operating system you're running on:
Windows 10
The python version you're using (probably the output of python --version)
python --version
Python 3.6.8
create an .md doc dummy markdown provided below:
{% docs tradein %} ### tradein sample # h1 Heading 8-) ## h2 Heading ### h3 Heading #### h4 Heading ##### h5 Heading ###### h6 Heading {% enddocs %}
in schema.yml add a source and reference the doc block created above in the description field
sources: - name: Amazon_Tradein description: '{{ doc("<name>") }}'
run
dbt docs generate
then run
dbt docs serve
and navigate to the sources description.
The text was updated successfully, but these errors were encountered:
Merge pull request #1494 from fishtown-analytics/fix/render-descripti…
00cbe3e
…ons-properly Render source_description fields in sources (#1484)
beckjake
Successfully merging a pull request may close this issue.
Issue
When placing markdown into a source description, it renders as the jinja string rather than markdown.
Issue description
The jinja string in the sources description is rendered as the string in the documentation.
Schema.yml file:
markdown file:
rendered description:
Results
The jinja string is returned instead of rendered markdown like in models descriptions
Should render like this:
System information
The output of
dbt --version
:The operating system you're running on:
Windows 10
The python version you're using (probably the output of
python --version
)Python 3.6.8
Steps to reproduce
create an .md doc
dummy markdown provided below:
in schema.yml add a source and reference the doc block created above in the description field
run
then run
and navigate to the sources description.
The text was updated successfully, but these errors were encountered: