If you notice any bugs, big or small, post em here or on github. I'll try to sneak em in as I fix the bigger issues that crept through during the update.

Re: @Marti:
Really need to remember to double lf with md quoting until editing an existing reply is fixered. :)

Testing markdown Fenced code blocks


original JS::

// Add the old object onto the stack (as a reference)

ret.prevObject = this;

ret.context = this.context;

if ( name === "find" ) {

ret.selector = this.selector + (this.selector ? " " : "") + selector;

} else if ( name ) {

ret.selector = this.selector + "." + name + "(" + selector + ")";

}

return ret; /* Slash-star comment */

}

four spaces in the beginning of line::

// Add the old object onto the stack (as a reference)
ret.prevObject = this;
ret.context = this.context;
if ( name === "find" ) {
  ret.selector = this.selector + (this.selector ? " " : "") + selector;
} else if ( name ) {
  ret.selector = this.selector + "." + name + "(" + selector + ")";
}
return ret;     /* Slash-star comment */
}

same code, enclosed in backticks::

    // Add the old object onto the stack (as a reference)
    ret.prevObject = this;
    ret.context = this.context;
    if ( name === "find" ) {
      ret.selector = this.selector + (this.selector ? " " : "") + selector;
    } else if ( name ) {
      ret.selector = this.selector + "." + name + "(" + selector + ")";
    }
    return ret;     /* Slash-star comment */
    }

the result is somewhat surprising

Re: @trespassersW:
trespassersW

Fixed. I posted this image with:

<img src="https://i.imgur.com/LFRKMhl.png" alt="trespassersW" title="trespassersW" />

First discussion page is disordered by this post.
For myself, I solved this problem using stylish and next css:

  .tr-link td, .tr-link-a, .tr-link .label, 
  .td-fit
  { white-space: normal !important;
    word-wrap:break-word !important;
  }
  .td-fit { width:auto !important; }
  .table .tr-link td { max-width: 600px !important;}

Re: @trespassersW:

Can be. The Categories column also has a dependency issue about being modified for sorting so not sure what will be done which is why I said "One of many" because I know there will probably be more. Btw what is "next css" ??