asciidoctor / atom-asciidoc-preview

⚛ AsciiDoc preview for the Atom editor.
https://atom.io/packages/asciidoc-preview
MIT License
141 stars 42 forks source link

No code-highlighting in preview window #268

Closed sla-te closed 6 years ago

sla-te commented 6 years ago

Description

No code-highlighting after installing the newest release.

Screenshots

no-code-highlight

Syntax example

[source,java]
----
public class PruefeSchaltjahr {
    public static void main(String[] args) {
        int jahr = Integer.parseInt(args[0]);
        boolean istSchaltJahr;

        istSchaltJahr = (jahr % 4 == 0);
        istSchaltJahr = istSchaltJahr && (jahr % 100 != 0);
        istSchaltJahr = istSchaltJahr || (jahr % 400 == 0);

        System.out.println(istSchaltJahr);
    }
}
----
ldez commented 6 years ago

Thanks for taking the time to open this issue.

I confirm the bug, a new version coming soon.

sla-te commented 6 years ago

You are welcome. Cool, thanks for letting me know :)