Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Smart utility rendering markdown-ready HTML.
$ npm install brightml
Brightml is promised-based.
It can be used to render from a file:
var Brightml = require('brightml');
var converter = new Brightml('index.html');
converter.render()
.then(function (cleanHTML) {
// Use your cleanHTML as intended
});
Or process an HTML string directly:
var Brightml = require('brightml');
var converter = new Brightml();
var HTMLString = '<table><tr><td>Title 1</td><td>Title 2</td></tr><tr><td>Data 1</td><td>Data 2</td></tr></table>';
converter.process(HTMLString)
.then(function (cleanHTML) {
// cleanHTML is now
// <table>
// <thead>
// <tr>
// <th>Title 1</th>
// <th>Title 2</th>
// </tr>
// </thead>
// <tbody>
// <tr>
// <td>Data 1</td>
// <td>Data 2</td>
// </tr>
// </tbody>
// </table>
});
Brightml performs the following in order.
<p>
instead.This operation uses the rules.js
file to determine which tags/attributes/schemes are allowed.
id
Try to set <a>
tags id
attribute on their direct parent if possible.
For each <a>
tag's href
attribute local link, move the referenced HTML element before the next <h1>
tag. This feature is used to prevent breaking of local links and keep them in sight.
<table>
tagsReplace nested <table>
tags by a warning message followed by their content in a simple <td>
tag.
<table>
elementsEnsure every <table>
elements look the same.
Used schema :
<!-- Move caption before <table> if any -->
<caption></caption>
<table>
<!-- Ensure the first row contains <th> tags in a <thead> element -->
<thead>
<tr>
<th>Title 1</th>
<th>Title 2</th>
</tr>
</thead>
<!-- Ensure all remaining rows are inside a <tbody> element -->
<tbody>
<tr>
<td>Row 1 - Data 1</td>
<td>Row 1 - Data 2</td>
</tr>
<tr>
<td>Row 2 - Data 1</td>
<td>Row 2 - Data 2</td>
</tr>
</tbody>
</table>
Ensure every <th>
and <td>
tags don't contain a <p>
tag to prevent line breaking.
FAQs
Smart utility rendering markdown-ready HTML
The npm package brightml receives a total of 0 weekly downloads. As such, brightml popularity was classified as not popular.
We found that brightml demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.