我尝试将一些HTML代码段放到Github上的README.md中,但HTML代码已被解析。
我该怎么做?
<h2>Example of code</h2>
<pre>
<div class="container">
<div class="block two first">
<h2>Your title</h2>
<div class="wrap">
//Your content
</div>
</div>
</div>
</pre>
答案 0 :(得分:88)
尝试将HTML代码段放在```HTML
块中,如下所示:
```html
<h2>Example of code</h2>
<pre>
<div class="container">
<div class="block two first">
<h2>Your title</h2>
<div class="wrap">
//Your content
</div>
</div>
</div>
</pre>
```
答案 1 :(得分:0)
Handsontable最近更改了许可证。有一个非常兼容的工具可以创建在线电子表格。
<html>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/numeral.js/2.0.6/numeral.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/js/jquery.jexcel.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/js/jquery.jdropdown.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/css/jquery.jexcel.min.css" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/css/jquery.jdropdown.min.css" type="text/css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/js/excel-formula.min.js"></script>
<div id="my"></div>
<script>
data1 = [
['US', 'Cheese', 'Yes', '2019-02-12'],
['CA;US;UK', 'Apples', 'Yes', '2019-03-01'],
['CA;BR', 'Carrots', 'No', '2018-11-10'],
['BR', 'Oranges', 'Yes', '2019-01-12'],
];
$('#my1').jexcel({
data:data1,
colHeaders: [ 'Product Origin','Description', 'Stock', 'Best before' ],
colWidths: [ 300, 200, 100, 100 ],
columns: [
{ type: 'dropdown', url:'/jexcel/countries', autocomplete:true, multiple:true }, // Remote source for your dropdown
{ type: 'text' },
{ type: 'dropdown', source:['No','Yes'] },
{ type: 'calendar' },
],
style:[
{ A1: 'background-color: orange; ' },
{ B1: 'background-color: orange; ' },
{ C1: 'background-color: orange; ' },
{ D1: 'background-color: orange; ' },
],
});
</script>
</html>