Editor - Copy Text as HTML

Sometimes programmers and database administrators need to paste their code to some documents like documentation or web articles with formatting and syntax highlighting preserved. In the version 7 of NoSQL Manager for MongoDB we have added new feature that allows to export selected in Shell and SQL Editor text as HTML. To do that, select text you want to export and click mouse right to open popup menu, next click Advanced|Copy Selected Text as HTML menu item.
Copy Text as Html

After that you can paste copied fragment to a document or HTML page.

db.people.find(
    {
      $and : [{
          "status" : "A"
        }, {
          "age" : {
            $gte : 51
          }
        }]
    }
).sort({ "user_id" : 1 }).limit(3);