Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
196 views
in Technique[技术] by (71.8m points)

Is there a github markdown language identifier for Objective C code?

In the official github flavored markdown docs they show how we can use fences to mark code blocks, and optionally we can supply a language identifier, such as

```ruby
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
```

Is there a language identifier for Objective C? I've searched and cannot find a reference.

Furthermore, is there a list of all supported language identifiers that can be used in github markdown?

question from:https://stackoverflow.com/questions/11890864/is-there-a-github-markdown-language-identifier-for-objective-c-code

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The identifier is objective-c.

Here you can find a full list: http://coapp.org/reference/garrett-flavored-markdown.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...