[nodebb-plugin-color] Colors in posts
-
Hi,
this is my first pluginThis plugin allow users to use colors in their posts.
Installation
npm install nodebb-plugin-color
Usage
%(color)[Text]
color
represents the css color applied to the text.
You can use Hex values, rgb, or name of color.Hope it's useful
-
Nice! I already have a feature request if you start typing %( it pops open a color picker (maybe use the same code for the popup as the @mentions dropdown)
anyways thanks for this
-
@Tanner I saw psychobunny give instructions on how to add a composer button. I may give it a go tomorrow.
For my own reference (on mobile)nodebb-plugin-spoilers/static/spoilers.js at master 路 NodeBB-Community/nodebb-plugin-spoilers
Allows you to embed spoilers in NodeBB post content. - nodebb-plugin-spoilers/static/spoilers.js at master 路 NodeBB-Community/nodebb-plugin-spoilers
GitHub (github.com)
I'll also peek around and see if it's possible to have multiple colors on one line. Be advised though, I am extremely new to Node, so no promises.
-
I've hashed out some code snippets I want to test working off of some of the author's code, and some of psychobunny's. If anyone would be willing to team up for some testing on GitHub, it would be awesome. Trying to add in a composer button seems to have broken my test plugin.
-
@toolito Hello, I've updated this plugin to include the missing feature :
-
A button in composer
-
the colorpicker to choose a color
-
and the code is parsed
-
Updated regexp for perf and because I didn't update here you can also use multiple colored words in your texts now.
Adding button to composer + colorpicker working. Updated regex for perfs. by esiao 路 Pull Request #2 路 Toolito/nodebb-plugin-colors
Salut, nouvelle PR qui ajoute une fonctionnalit茅 essentielle je pense bouton dans le composer. avec un colorpicker pour choisir la couleur. la regex a 茅t茅 refaite (m锚me que sur mon plugin des topi...
GitHub (github.com)
-
-
@toolito Plugin updated for NodeBB 0.6.0 compatibilty
Now the plugin don't parse what's between code blocks.Updated for NodeBB 0.6.x compatibilty & removed parsing between code tags by esiao 路 Pull Request #5 路 Toolito/nodebb-plugin-colors
I have updated the plugin for NodeBB 0.6.x. Also managed to finally avoid parsing inside code blocks. Could you give me the ownership on npm as I update the plugin regularly and it would avoid to w...
GitHub (github.com)
-
-
Seems like @toolito is indeed active though, that issue above was merged by him a few days ago
EDIT: Maybe he just forgot to publish to npm? Might be best to just bug him on his issue tracker
-
Yes @toolito is active on Github. But update to this one
https://github.com/Toolito/nodebb-plugin-colors/pull/6I've asked for npm ownership but I don't know if he did it or want to do it. And there's no way on npmjs to see if I'm owner.
-
The plugin in npm is outdated.
So, if you install it via
$ npm install nodebb-plugin-color
you get version at 27 July 2014 that doesn't work.If you clone the repo
$ cd /path/to/NodeBB/node_modules $ git clone https://github.com/Toolito/nodebb-plugin-colors
the plugin won't work until you rename folder
from
nodebb-plugin-colors
to
nodebb-plugin-color
But there is a way!
$ cd /path/to/NodeBB/node_modules $ npm i git+https://github.com/Toolito/nodebb-plugin-colors
After that the plugin finally works. (p.s. I didn't tested all claimed functionality, I just became convinced that
%(red)[Meow]
works)ping @toolito
-
Hello @Mega . Just curious, why does :
$ cd /path/to/NodeBB/node_modules
$ npm i git+https://github.com/Toolito/nodebb-plugin-colorsWork when nodebb-plugin-colors < with an "s" is at the end? I thought it supposedly worked without the "s"? Not doubting, just curious as to why it works that way for future reference.
Thank you for your help so far. I'm booting up Nodebb to test it out.