浏览代码

Fixed markdown code fence for cpp highlighting.

Steve Thielemann 3 年之前
父节点
当前提交
d090086933
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 5 5
      README.md

+ 5 - 5
README.md

@@ -10,7 +10,7 @@ Under the add_executable(your-door your-door.cpp) line, add ``target_link_librar
 
 
 In main, create the door instance:
 In main, create the door instance:
 
 
-```
+```cpp
 #include "door.h"
 #include "door.h"
 
 
 int main( int argc, char * argv[] ) {
 int main( int argc, char * argv[] ) {
@@ -28,7 +28,7 @@ A line is text that can be updated, and can be colorized by the use of a renderi
 
 
 If you want all uppercase letters one color, and lowercase another.  That can be done.
 If you want all uppercase letters one color, and lowercase another.  That can be done.
 
 
-```
+```cpp
 /*
 /*
  * Custom line rendering fuction.
  * Custom line rendering fuction.
  * This allows for the status to be one color, and the value to be another.
  * This allows for the status to be one color, and the value to be another.
@@ -82,7 +82,7 @@ scoreLine->setUpdater(scoreUpdate);
 
 
 A Panel is a group of lines with a known position.
 A Panel is a group of lines with a known position.
 
 
-```
+```cpp
 std::unique_ptr<door::Panel> panel = std::make_unique<door::Panel>(50);
 std::unique_ptr<door::Panel> panel = std::make_unique<door::Panel>(50);
 panel->setStyle(door::BorderStyle::NONE);
 panel->setStyle(door::BorderStyle::NONE);
 // add lines to the panel
 // add lines to the panel
@@ -97,7 +97,7 @@ door << panel;
 
 
 A Panel that displays options for the user to select
 A Panel that displays options for the user to select
 
 
-```
+```cpp
 // Define a menu starting at 5, 5 with width 25
 // Define a menu starting at 5, 5 with width 25
 door::Menu menu(5, 5, 25);
 door::Menu menu(5, 5, 25);
 
 
@@ -156,5 +156,5 @@ if ( r == 1 ) {
     // Play Cards
     // Play Cards
 }
 }
 ...
 ...
-
 ```
 ```
+