显示代码片段 / Display Code Snippet In Blogger
很多时候我们可以在网络教学里可以看到作者都会有显示代码片段, 比如以下: 这也是我很久之前就好奇如何办到的,所以我今天就来研究如何显示代码片段。 方式: 截图 Screenshot 这方式很简单,快速,可惜不太方便读者因为不能 highlight code Example of Code Snippet: Edit HTML & CSS 自己加 CSS style sheet 和加 Html tag 好处:可以自己 customize 设计,颜色等 坏处:费时,不是一个很好的方法 所以以下是我下午自己做的成品例子: #include <SPI.h> #include <Ethernet.h> // the media access control (ethernet hardware) address for the shield: byte mac[] = { 0xDE , 0xAD , 0xBE , 0xEF , 0xFE , 0xED }; //the IP address for the shield: byte ip[] = { 192 , 168 , 66 , 100 }; EthernetServer server = EthernetServer( 111 ) ; void setup() { Ethernet . begin( mac , ip ) ; } void loop() { // if an incoming client connects, there will be bytes available to read: EthernetClient client = server. available() ; if (client == true ) { // r...