You can list active plugins with
./nodebb pluginsAnd it does have a help screen
./nodebb --help@meetdilip Are you using the markdown plugin? Can you tell me what you don't have ticked?
@a_5mith said:
@meetdilip Are you using the markdown plugin? Can you tell me what you don't have ticked?
Give me a second. Will check and tell.
@a_5mith , enabled parse markdown plug in. Now working fine. Thanks
@meetdilip No problem.
@a_5mith said:
@meetdilip No problem.
Did you checked the thread ? It seems NodeBB does not know to count beyond 14
@meetdilip Check your markdown, from the HTML it looks like 13 is the last list item, 14 is in it's own paragraph, then you've started a new ordered list at 15, which is displaying as 1.
@a_5mith said:
@meetdilip Check your markdown, from the HTML it looks like 13 is the last list item, 14 is in it's own paragraph, then you've started a new ordered list at 15, which is displaying as 1.
How to do that ?
@meetdilip Edit the post and make sure you've only got one ordered list. Not 2.
Thanks. The issue was that I didn't put a dot after 14. That messed things up.
Look at the source code of the page (right-click on the page and select View Page Source). You will see something like this:
<li><p>Brackets</p>
</li>
</ol>
<p>14 Bluefish Editor</p>
<ol>
<li><p>Kompozer</p>
</li>
<li><p>VLC Media Player</p>
</li>
<li><p>Maxthon Browser</p>
</li>
Notice that you messed up the listing after item 13. Edit the post and you will see that you used a different list marker after 13.
If you want an ordered list, just put any number before each item and Markdown will take care of the rest. If you want a bulleted list, use a + (plus), - (minus) or ***** (asterisk) sign.