Parsedown: image size dimension attribute
2020-01-01
This class BParsedown
as an extension for "Parsedown" reads optional image size dimensions like =50x50
in markdown syntax and builds a proper image tag with width
and height
attributes from it. It supports inline syntax as well as markdown per reference.
✔ pos. tested with Parsedown Release: 1.7.4.
Examples
Inline
m […]
javascript: remove value fom array
2019-12-31
Q; How to remove a value from a javascript array ?
A: use splice
method to cut off value from array
/**
* remove value fom array
*/
Array.prototype.remove = function(mValue) {
return this.splice(this.indexOf(mValue), 1);
}
// example array
var aData = [1, 2, 3, 4, 5];
// usage: remove the value "4"
aData.remove(4);
// gives: [1, 2, 3, 5]
console.log(aData);
[…]