We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13bf885 commit 4345fb2Copy full SHA for 4345fb2
docs/rfc/lcui-cli/0006-javascript-compiler.md
@@ -1,4 +1,4 @@
1
-# CSS 编译器
+# JavaScript 编译器
2
3
- 开始日期:2023-08-14
4
- 目标主要版本:1.x
@@ -13,7 +13,7 @@
13
14
示例 JavaScript 文件内容:
15
16
-```js title=home.js
+```js title="home.js"
17
module.exports = {
18
name: "lcui-app",
19
children: [
@@ -60,7 +60,7 @@ module.exports = {
60
61
示例 CSS 文件内容:
62
63
-```css title=home.css
+```css title="home.css"
64
root {
65
background-color: #f6f8fa;
66
}
@@ -74,7 +74,7 @@ root {
74
75
执行 `lcui compile home.js` 命令后,生成 `home.js.h` 文件:
76
77
-```c title=home.js.h
+```c title="home.js.h"
78
/** This file is generated from home.js */
79
80
#include <ui.h>
0 commit comments