How to use the format.ul function in format

To help you get started, we’ve selected a few format examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github lepture / ed / build / build.js View on Github external
k('super+l', function(e) {
    e.preventDefault();
    if (!k.alt) {
      format.ul();
    } else {
      format.ol();
    }
  });
}
github lepture / ed / index.js View on Github external
k('super+l', function(e) {
    e.preventDefault();
    if (!k.alt) {
      format.ul();
    } else {
      format.ol();
    }
  });
}