Anastasiia Smirnova
Anastasiia Smirnova
Unfortunately that doesn't work :( I've executed almost the same steps as @BR0kEN- did, but that didn't help. ``` asmirnova:~ asmirnova$ networksetup -getdnsservers Wi-Fi 127.0.0.1 asmirnova:~ asmirnova$ nslookup couchbase Server:...
Hi @cstettler. Thanks for the feedback, I will take a look into it.
There is also an option to give read/write rights to the publisher and only read rights to all other users. (this might be too strict, but can still solve an...
.`DataStream` Detailed Block Diagram title for code block also causes an error. Probably the same issue.
Unfortunately I haven't found any configuration option for Asciidoctor to fail the conversion process if include directive is broken. To resolve the same issue [asciidoctor-maven-plugin](https://asciidoctor.org/docs/asciidoctor-maven-plugin/) has `failIf` property that can...
I was able to get such functionality using `PostProcessor`: ``` import org.asciidoctor.ast.Document; import org.asciidoctor.extension.Postprocessor; public class UnresolvedDirectivePostprocessor extends Postprocessor { @Override public String process(Document document, String output) { if (output.contains("Unresolved...
I've implemented this feature internally and just for the case made this feature togglable. I can open a PR with my implementation. What do you think?
Extension mechanism is already built in in Asciidoctor, no need to develop something in confluence-publisher additionally. I think, it should be documented. Here are the steps: https://github.com/confluence-publisher/confluence-publisher/issues/299#issuecomment-759400977 https://github.com/confluence-publisher/confluence-publisher/issues/299#issuecomment-957870297 We have...
@tdanylchuk Looks like label watching Rest API is available: https://developer.atlassian.com/cloud/confluence/rest/#api-user-watch-label-labelName-post
There is no need to change anything inside the `confluence-publisher` project for this feature. Here is a short example how to add custom extensions to the Maven plugin: https://github.com/confluence-publisher/confluence-publisher/issues/95#issuecomment-961808303 I...