Skip to content

Commit

Permalink
Update Wiki编程的定义.tid
Browse files Browse the repository at this point in the history
  • Loading branch information
Zacharia2 committed Aug 25, 2023
1 parent b8c1a8d commit da1cae5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tiddlers/Wiki编程的定义.tid
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class: autonumhead
created: 20230809234409764
creator: WhiteFall
modified: 20230825055018022
modified: 20230825060714402
modifier: WhiteFall
tags: 插件开发 笔记思维
title: Wiki编程的定义
Expand Down Expand Up @@ -102,7 +102,7 @@ TiddlyWiki 的显示是由一些底层的小工具驱动。这些小工具都组

> 现在,它不再使用 jQuery 和 DOM,而是将维基文本wikitext解析为通用的树形格式,然后将其渲染为文本 HTML。——TiddlyWiki5的诞生!

元素微件通常由 标记(tag)、属性(Attribute)、内容(Content)组成。可以将一个元素置于其他元素之中 —— 称作嵌套。通过指定标记和属性完成微件的方法调用并将结果作用于(传递到)内容中
元素微件通常由 标记(tag)、属性(Attribute)、内容(Content)组成。可以将一个元素置于其他元素之中 —— 称作嵌套。通过指定标记和属性完成微件的方法调用,根据微件行为定义生成行为效果,若有返回值则并将返回值作用或传递到内容中

```xml
<$set name="greeting" value="Hi">
Expand All @@ -114,3 +114,7 @@ TiddlyWiki 的显示是由一些底层的小工具驱动。这些小工具都组
</$set>
```

!!! 调试

action-log、log小工具、[[调试筛选器]]

0 comments on commit da1cae5

Please sign in to comment.