-
-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
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
Non-Angle-Bracket Block-Rendered Components Parsed Incorrectly in 0.7.0
#473
Comments
0.7.0
0.7.0
Hmm, I am not sure what the problem might be here. |
Me neither 🤷 I tried narrowing it down but any time Especially odd since the deployed Addon Docs docs for this addon uses the same syntax! |
I'm guessing it would have to be somewhere in the Any chance you would have some time to debug? I would be happy to pair on it next week as well. |
* Add a dependency on ember-data since it no longer brings along the depenency. * Add newlines to account for bugs in ember-cli-addon-docs. See: ember-learn/ember-cli-addon-docs#473 and ember-learn/ember-cli-addon-docs#402 * Add a missing `END-SNIPPET` without which parsing of the snippet was corrupted
* Add a dependency on ember-data since it no longer brings along the depenency. * Add newlines to account for bugs in ember-cli-addon-docs. See: ember-learn/ember-cli-addon-docs#473 and ember-learn/ember-cli-addon-docs#402 * Add a missing `END-SNIPPET` without which parsing of the snippet was corrupted
New version of ember-cli-addon-docs bring a CSS reset which breaks ember-table tests. Thus these libraries are updated, but only through ember-try. See the README for more information. Other changes related to upgrading ember-cli-addon-docs include: * Add a dependency on ember-data since it no longer brings along the depenency. * Add newlines to account for bugs in ember-cli-addon-docs. See: ember-learn/ember-cli-addon-docs#473 and ember-learn/ember-cli-addon-docs#402 * Add a missing `END-SNIPPET` without which parsing of the snippet was corrupted
New versions of ember-cli-addon-docs bring a CSS reset which breaks ember-table tests. Instead of coupling the ember-table test suite to ember-cli-addon-docs CSS, I created a new ember try config for generating docs and removed the dependencies from the normal dev setup. I've documented how to generate the documentation in the README.md, and I believe updated the deployment/release code appropriately. Other changes related to the ember-cli-addon-docs upgrade include: * Add a dependency on ember-data since it no longer brings along the dependency. * Add newlines to account for bugs in ember-cli-addon-docs. See: ember-learn/ember-cli-addon-docs#473 and ember-learn/ember-cli-addon-docs#402 * Add a missing `END-SNIPPET` without which parsing of the snippet was corrupted. * Make an `hbs` template executable without error.
New versions of ember-cli-addon-docs bring a CSS reset which breaks ember-table tests. Instead of coupling the ember-table test suite to ember-cli-addon-docs CSS, I created a new ember try config for generating docs and removed the dependencies from the normal dev setup. I've documented how to generate the documentation in the README.md, and I believe updated the deployment/release code appropriately. Other changes related to the ember-cli-addon-docs upgrade include: * Add a dependency on ember-data since it no longer brings along the dependency. * Add newlines to account for bugs in ember-cli-addon-docs. See: ember-learn/ember-cli-addon-docs#473 and ember-learn/ember-cli-addon-docs#402 * Add a missing `END-SNIPPET` without which parsing of the snippet was corrupted. * Make an `hbs` template executable without error.
New versions of ember-cli-addon-docs bring a CSS reset which breaks ember-table tests. Instead of coupling the ember-table test suite to ember-cli-addon-docs CSS, I created a new ember try config for generating docs and removed the dependencies from the normal dev setup. I've documented how to generate the documentation in the README.md, and I believe updated the deployment/release code appropriately. Other changes related to the ember-cli-addon-docs upgrade include: * Add a dependency on ember-data since it no longer brings along the dependency. * Add newlines to account for bugs in ember-cli-addon-docs. See: ember-learn/ember-cli-addon-docs#473 and ember-learn/ember-cli-addon-docs#402 * Add a missing `END-SNIPPET` without which parsing of the snippet was corrupted. * Make an `hbs` template executable without error.
New versions of ember-cli-addon-docs bring a CSS reset which breaks ember-table tests. Instead of coupling the ember-table test suite to ember-cli-addon-docs CSS, I created a new ember try config for generating docs and removed the dependencies from the normal dev setup. I've documented how to generate the documentation in the README.md, and I believe updated the deployment/release code appropriately. Other changes related to the ember-cli-addon-docs upgrade include: * Add a dependency on ember-data since it no longer brings along the dependency. * Add newlines to account for bugs in ember-cli-addon-docs. See: ember-learn/ember-cli-addon-docs#473 and ember-learn/ember-cli-addon-docs#402 * Add a missing `END-SNIPPET` without which parsing of the snippet was corrupted. * Make an `hbs` template executable without error.
New versions of ember-cli-addon-docs bring a CSS reset which breaks ember-table tests. Instead of coupling the ember-table test suite to ember-cli-addon-docs CSS, I created a new ember try config for generating docs and removed the dependencies from the normal dev setup. I've documented how to generate the documentation in the README.md, and I believe updated the deployment/release code appropriately. Other changes related to the ember-cli-addon-docs upgrade include: * Add a dependency on ember-data since it no longer brings along the dependency. * Add newlines to account for bugs in ember-cli-addon-docs. See: ember-learn/ember-cli-addon-docs#473 and ember-learn/ember-cli-addon-docs#402 * Add a missing `END-SNIPPET` without which parsing of the snippet was corrupted. * Make an `hbs` template executable without error.
After updating to
0.7.0
, some Markdown files that were previously parsed correctly no longer are.We have a template like this:
Rendering the
fluid-select
in this way was fine previously, but now fails; rendering it with non-angle-brackets in the "block" style messes with the way the rest of the file is parsed, soCustom List
is no longer parsed as anh2
.If I convert the example code to use angle-bracket style invocation, the parsing seems to be fixed.
The text was updated successfully, but these errors were encountered: