You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The resulting Markdown completely ignores the content available on the file awspec/doc/_resource_types/eks_nodegroup.md, producing exactly the same content, which is different of the Markdown file has.
This is the current content of the mentioned file:
### exist
ruby
describe eks_nodegroup('my-eks-nodegroup'), cluster: 'my-cluster' do
it { should exist }
end
### be_active, be_creating
ruby
describe eks('my-eks-nodegroup'), cluster: 'my-cluster' do
it { should be_active }
end
The second code section is never inserted, neither changes on the header ### be_active, be_creating.
I was able to conduct some debugging from lib/awspec/generator/doc/type/base.rb, all the expected content is available on @descriptions before actually generating the template result:
But for some reason, the Markdown on @descriptions never reaches doc/resource_types.md. I even attempt to delete the whole eks_nodegroup section from the file before generating again, but the result is the same.
Also, I believe that this automatic documentation process lacks, well, it's own documentation. I'm not sure either what the automation expected from those Markdown snippets to do it's work.
The text was updated successfully, but these errors were encountered:
When I execute
The resulting Markdown completely ignores the content available on the file
awspec/doc/_resource_types/eks_nodegroup.md
, producing exactly the same content, which is different of the Markdown file has.This is the current content of the mentioned file:
The second code section is never inserted, neither changes on the header
### be_active, be_creating
.I was able to conduct some debugging from
lib/awspec/generator/doc/type/base.rb
, all the expected content is available on@descriptions
before actually generating the template result:But for some reason, the Markdown on
@descriptions
never reachesdoc/resource_types.md
. I even attempt to delete the wholeeks_nodegroup
section from the file before generating again, but the result is the same.Also, I believe that this automatic documentation process lacks, well, it's own documentation. I'm not sure either what the automation expected from those Markdown snippets to do it's work.
The text was updated successfully, but these errors were encountered: