瀏覽代碼

Merge pull request #120 from tcyrus/patch-1

Update Readme.md
Micha Mettke 9 年之前
父節點
當前提交
c691d4eda2
共有 1 個文件被更改,包括 9 次插入8 次删除
  1. 9 8
      Readme.md

+ 9 - 8
Readme.md

@@ -1,4 +1,5 @@
-[![Build Status](https://travis-ci.org/vurtun/nuklear.png)](https://travis-ci.org/vurtun/nuklear)
+[![Build Status](https://travis-ci.org/vurtun/nuklear.svg)](https://travis-ci.org/vurtun/nuklear)
+
 # Nuklear
 # Nuklear
 This is a minimal state immediate mode graphical user interface toolkit
 This is a minimal state immediate mode graphical user interface toolkit
 written in ANSI C and licensed under public domain. It was designed as a simple
 written in ANSI C and licensed under public domain. It was designed as a simple
@@ -30,10 +31,10 @@ by default when included and allows including this header in other headers
 and does not contain the actual implementation.
 and does not contain the actual implementation.
 
 
 The implementation mode requires to define  the preprocessor macro
 The implementation mode requires to define  the preprocessor macro
-`NK_IMPLEMENTATION` in *one* .c/.cpp file before #includeing this file, e.g.:
+`NK_IMPLEMENTATION` in *one* .c/.cpp file before `#include`ing this file, e.g.:
 ```c
 ```c
-    #define NK_IMPLEMENTATION
-    #include "nuklear.h"
+#define NK_IMPLEMENTATION
+#include "nuklear.h"
 ```
 ```
 
 
 ## Gallery
 ## Gallery
@@ -84,12 +85,12 @@ nk_end(ctx);
 ```
 ```
 ![example](https://cloud.githubusercontent.com/assets/8057201/10187981/584ecd68-675c-11e5-897c-822ef534a876.png)
 ![example](https://cloud.githubusercontent.com/assets/8057201/10187981/584ecd68-675c-11e5-897c-822ef534a876.png)
 
 
-##CREDITS:
+## CREDITS:
 Developed by Micha Mettke and every direct or indirect contributor to the GitHub.
 Developed by Micha Mettke and every direct or indirect contributor to the GitHub.
 
 
 
 
-Embeds stb_texedit, stb_truetype and stb_rectpack by Sean Barret (public domain)
-Embeds ProggyClean.ttf font by Tristan Grimmer (MIT license).
+Embeds `stb_texedit`, `stb_truetype` and `stb_rectpack` by Sean Barret (public domain)
+Embeds `ProggyClean.ttf` font by Tristan Grimmer (MIT license).
 
 
 
 
 Big thank you to Omar Cornut (ocornut@github) for his [imgui](https://github.com/ocornut/imgui) library and
 Big thank you to Omar Cornut (ocornut@github) for his [imgui](https://github.com/ocornut/imgui) library and
@@ -98,7 +99,7 @@ and his original immediate mode graphical user interface idea and Sean
 Barret for his amazing single header [libraries](https://github.com/nothings/stb) which restored my faith
 Barret for his amazing single header [libraries](https://github.com/nothings/stb) which restored my faith
 in libraries and brought me to create some of my own.
 in libraries and brought me to create some of my own.
 
 
-##LICENSE:
+## LICENSE:
 This software is dual-licensed to the public domain and under the following
 This software is dual-licensed to the public domain and under the following
 license: you are granted a perpetual, irrevocable license to copy, modify,
 license: you are granted a perpetual, irrevocable license to copy, modify,
 publish and distribute this file as you see fit.
 publish and distribute this file as you see fit.