-
Notifications
You must be signed in to change notification settings - Fork 18
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
File includes are not working on bitbucket #9
Comments
Hi @dbalakirev, I will look into it the next days. |
I finally found some time to look into your request. When you say "I learned that for example github also does this" does this mean that github also doesn't render the include or that it support this (I could also try this but as you obviously tried it, would be great if you can clarify this question. |
Thanks for checking out this issue! I meant that to my knowledge includes won't work on github either. What works there though, is it successfully replaces the include with a link. This include gets translated to a clickable link. If this would work for the bitbucket plugin, the content would be accessible already for developers. |
Hi, Thanks |
Adding to this issue as well as we are affected, but using
def myVar = 'variable'
// tag::code[]
println(myVar)
println('We are in the tag')
// end::code[] |
Would it be possible to change the rendering from client side rendering to server side rendering? |
I think where the rendering is done if not relevant for getting the support for includes. |
I now had some time to look into. Here a first overview how different includes are rendered. File Includes
are both rendered into a HTML link in the same way as on GitHub. Source Includes
is rendered as
in the same way as on GitHub. Unfortunately it works only on Will proceed with some use cases and tests before cutting a new release with better support |
That sounds promising. I am happy to give us a try, should you have a release. Of course I guess it will take a couple of days until I get them update the plugin version in our company bitbucket installation. |
I tested it with the latest release version actually. |
Ah ok. I misunderstood. I thought you actually had to fix something. Then I will test on our side to see if the problem is still around. Thanks for looking into it. |
Add-on 2.4.0 and 3.1.0 are now released supporting file includes. |
Hey,
We are evaluating writing our doc files with asciidoc instead of markdown.
One feature I am excited about is the include possibility.
In asciidoc I could write:
Which gets processed and resolved in the IDEA Asciidoc support, but when viewed on our bitbucket server, it gets translated to:
I learned that for example github also does this, probably due to the so called safe mode:
But at least the link should work I guess (meaning I'd like to have the actual link not the text "link").
We are running version 2.3.1 of the plugin.
Could you please suggest a workaround?
The text was updated successfully, but these errors were encountered: