> markdown span across multiple paragraphs?

General Discussion

Suggested Topics


  • 1 Votes
    2 Posts
    238 Views

    You could do some CSS based overrides.

    This is something I use in my custom css on the admin panel, it looks to see if you are either in a category or topic of a certain category, in this instance the "Red vs Blue Discussion" category (but using the slug)

    body[class*=page-category-red-vs-blue-discussion], body[class*=page-topic-category-red-vs-blue-discussion] { background-image: url(/assets/uploads/system/rvb-bg.jpg) !important; .navbar-default { border-bottom: 3px #dd0000 solid; border-image: linear-gradient(to right, red, blue); border-image-slice: 1; } .btn-primary, .btn-info { color: #fff; background-color: #dd0000; border-color: #dd1111; } .btn-primary:hover { color: #fff; background-color: #bb0000; border-color: #bb1111; } .btn-info.active, .btn-info.focus, .btn-info:active, .btn-info:focus, .btn-info:hover, .open > .dropdown-toggle.btn-info { color: #fff; background-color: #bb0000; border-color: #bb1111; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover { color: #000; background-color: #bb0000; } .composer .mobile-navbar { background-color: #dd0000; } }

    Examples of the overrides can be seen here:
    Normal: https://saesrpg.uk/categories
    Override: https://saesrpg.uk/category/25/red-vs-blue-discussion

  • 0 Votes
    2 Posts
    3k Views

    By default, NodeBB has nodebb-plugin-markdown, which allows users to use the common markdown format in their posts.

    **this is bolded**

    this is bolded

    It's fully documented here: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet

  • 0 Votes
    5 Posts
    1k Views

    @RazorAxis the only thing I can think of is that some CSS style aren't being recognized by Firefox and IE for whatever theme you're using. I wouldn't expect this to happen though, since we're using bootstrap.

  • Markdown editors

    General Discussion
    1 Votes
    9 Posts
    4k Views

    Haha I guess I'm (was?) old fashioned too. As you know @HolyPhoenix I've spent a ton of time with phpBB. I was totally going to go forward with BBCode for NodeBB when we first wrote it until @julian stepped in.

    Fortunately I'm lazy so he wrote the first MD plugin against my original wishes :p. Worked out in the end though, I'm glad we went this way. As for a BBCode based composer? Totally possible as of recent developments (v0.4.2+), one could potentially write a plugin to modify the composer and such. If anybody wants to write that let me know, I also wrote a BBCode to Markdown plugin which could be useful as well.

  • Multiple Instances

    General Discussion
    1 Votes
    3 Posts
    1k Views

    Alright, I'll look into it. Thanks for the advice!