From f1e8eb403e2a25fc4c0d692154339e6b6582ca83 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Mon, 4 Feb 2019 11:41:57 +0100 Subject: [PATCH] test github md extensions --- ortools/sat/doc/test.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ortools/sat/doc/test.md b/ortools/sat/doc/test.md index 88435daf56..e57c320b9b 100644 --- a/ortools/sat/doc/test.md +++ b/ortools/sat/doc/test.md @@ -17,7 +17,7 @@ boolean variable *b* and two half-reified constraints, shown below:

Python

-
+```python
 """Link integer constraints together."""
 
 from __future__ import absolute_import
@@ -82,11 +82,11 @@ def ChannelingSampleSat():
 
 
 ChannelingSampleSat()
-
+```

C++

-
+    ```[cpp]
 #include "ortools/sat/cp_model.h"
 #include "ortools/sat/model.h"
 #include "ortools/sat/sat_parameters.pb.h"
@@ -137,7 +137,7 @@ int main() {
 
   return EXIT_SUCCESS;
 }
-
+```
This displays the following: