문제

I'm looking for a script that parses markup like the one used in wikis and in stackoverflow...

I prefer something that I can easily customize for additional markup

I'm using PHP, and I'm looking for a standalone class that requires no external dependencies from some framework, lib, etc.

I'm talking about a class/script that converts this:

**bold** 
- aaa
- bbb
- ccc

into:

bold

  • aaa
  • bbb
  • ccc
도움이 되었습니까?

해결책

The specific markup language used by StackOverflow is called Markdown. A Google search for PHP Markdown turns up several libraries; I haven't used any of them so I can't recommend one.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top