Coder Social home page Coder Social logo

Comments (3)

superian avatar superian commented on July 3, 2024

19^th^
H2O

from dreamwidth-js.

superian avatar superian commented on July 3, 2024

Ah, this is something that varies between markdown implementations/specs and we're supposed to use HTML tags to do this.. but if I wanted to use HTML tags, I wouldn't be using markdown!

from dreamwidth-js.

gromnitsky avatar gromnitsky commented on July 3, 2024

entry-post-md uses a markdown parser called marked

it doesn't understand such a syntax:

$ npm -g i marked
...

$ echo '19^th^ and H~2~O' | marked
<p>19^th^ and H<del>2</del>O</p>

but pandoc 2.19.2, for example, supports it:

$ echo '19^th^ and H~2~O' | pandoc
<p>19<sup>th</sup> and H<sub>2</sub>O</p>

if you don't like marked, you can use any external markdown-to-html converter like so:

echo '19^th^ and H~2~O' | pandoc | \
  dreamwidth-js entry-post -s 'my subject' -t 'markdown,lol' --security public

from dreamwidth-js.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.