From aac6e9d4c300d366f07f16cf7b68aa9acc596a15 Mon Sep 17 00:00:00 2001 From: archshift Date: Tue, 20 May 2014 14:45:56 -0700 Subject: [PATCH] C++ syntax highlighting! --- Coding-Style.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Coding-Style.md b/Coding-Style.md index 6f8214f..0811a0b 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -25,7 +25,8 @@ Citra is a brand new project, so we have a great opportunity to keep things clea ### Indentation/Whitespace Style Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spaces instead. -
namespace Example {
+```cpp
+namespace Example {
 
 // Namespace contents are not indented
  
@@ -100,4 +101,5 @@ void FooBar() {
         like_this;
 }
  
-}
\ No newline at end of file +} +``` \ No newline at end of file