I know, it's escapeinsides. But how can I show only the part of code? Not by linerange? But by "word" range?
For example i will show only code from //<B> to //<qB>
//<A>
class A{
public A(){
System.out.println("Hello from A");
}
//<qA>
//<B>
class B extends A{
System.out.println("Hello from B");
}
//<qB>
//<C>
class C extends B{
System.out.println("Hello from C");
}
//<qC>
babel, ask a new question and post a minimal working example (MWE). – jub0bs Nov 11 '15 at 06:38