@asadkhan890 said in Is there any nodebb plugin to remove meta data of posts?:
garden
That's a WordPress site afaict, I don't see any NodeBB installation - what have I missed?
Hi nodebb. Another friend from BitBangers here to show you my first plugin.
Trying to look through a thread of phone screenshots was just painful, so I made a little plugin to allow you to resize images.
The syntax is based loosely on the way iOS handles multple image sizes combined with normal markdown image embedding:

Size can take the following formats:
100x200
- Absolute size
100x
x200
- Absolute size where the other dimension is calculated to maintain aspect ratio
50%
- Percentage
0.5
- Scalar Multiplier
So for example, my original picture:





Install via npm:
npm install nodebb-plugin-image-sizer
Source:
https://github.com/Kern--/nodebb-plugin-image-sizer
Known Issues:
Images that are set to be wider than their container become elongated (width is set to match the container, but height is not adjusted). This means that mobile can get a bit dicey.