Skip to content

[CS2] Literate CoffeeScript fails on simple example #4463

@swang

Description

@swang

Example:

This is code that outputs 3

	x = 3
	console.log x

Wow that was easy!

Expected:

(function() {
  var x;

  x = 3;

  console.log(x);

}).call(this);

Instead:

(function() {


}).call(this);

I dug in a little bit and it looks like the "marked" library considers the pieces of code as paragraphs.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions