can you only use the markdown language in README.md in github?
I"ve experimented with using the markdown language in other files, but it doesn"t work. Ask for popular science ~
can you only use the markdown language in README.md in github?
I"ve experimented with using the markdown language in other files, but it doesn"t work. Ask for popular science ~
is generally used in md
files, not necessarily README.md
.md
is a general extension of markdown files. Files with secondary extensions in github will automatically try to call the corresponding parsing process to display, not limited to README.md files, your XXXXX.md will also be parsed.
because you didn't give the specific content and naming format of the other file, you don't know why it wasn't parsed.
github does not have to use markdown
, but if you use the markdown
file suffix must correspond to the content, otherwise how to identify the content of the file, in that way of parsing?
of course, github also supports many other text markup languages, so there are no examples of them.
Previous: The problem of converting a specific format string to json format in JS
Next: Spring transaction rollback BUG due to framework defect
...
http.get( url ,function(res){ var html = res.on( data ,function(chunk){ html += chunk }) res.on( end ,function(){ console.log(html) }) }) co...