code snippets

and a code snippet:

const a = "c";

can be long as well. In docugen it will be scrolling, on PDF and epub it will break:

if (something) {
  console.log("This is a long line: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec arcu et ante rhoncus tempor. Vestibulum vitae semper est, eget tempor quam. In tempor eu turpis hendrerit euismod. Donec tincidunt, enim ac vehicula porttitor, turpis lectus porttitor turpis, gravida malesuada tortor metus at arcu. Fusce id nulla purus. Ut vel tortor tortor. Sed consectetur sapien vitae ipsum vulputate, eu dapibus dui imperdiet. Nam malesuada felis sed faucibus venenatis.");
}else {
  console.log("abc");
}

can be long even without whitespace:

`https://${process.env.DISTRIBUTION_DOMAIN}/videos/${video}/*aaaaaaaaaaaaaaaaaaaaaaaaa`,

Highlight

A line can be highlighted. First line is full, second is the argument. Pattern can be an array, line4 has 2 highlights:

const a = 5;
console.log(a);
a++;
console.log(a + b);

graphql

works:

query {
  user(id: "user1") {
    name
    todos {
      name
      checked
    }
  }
}