Add Action → Open URLs
url:
prefs:root=DISPLAY&path=AUTOLOCK
ref:Use This Shortcut to Change Auto-Lock Timer on Your iPhone Anytime - MashTips
https://mashtips.com/shortcut-to-change-auto-lock-settings-on-iphone/
Add Action → Open URLs
url:
prefs:root=DISPLAY&path=AUTOLOCK
ref:Use This Shortcut to Change Auto-Lock Timer on Your iPhone Anytime - MashTips
https://mashtips.com/shortcut-to-change-auto-lock-settings-on-iphone/
在切成「new UI」前,ctrl + click 會是另開editor tab
要回復這效果的設定是 關掉「Enable Preview Tab 」
(click the gear icon in the Project view)
public interface SystemParameterDAO {
/**
* @see SystemParameterSqlBuilder#update
*/
@UpdateProvider(type = SystemParameterSqlBuilder.class, method = "update")
@Options(statementType= StatementType.CALLABLE)
void update( SystemParameter systemParameter);
class SystemParameterSqlBuilder {
public String updateById() {
return "BEGIN "
+ " UPDATE system_parameter"
+ " SET system_param_value = #{systemParamValue},"
+ " update_time = current_timestamp"
+ " WHERE system_param_name = #{systemParamName}"
+ " RETURNING CREATE_TIME, UPDATE_TIME INTO #{createTime, mode=OUT, jdbcType=TIMESTAMP}, #{updateTime, mode=OUT, jdbcType=TIMESTAMP};"
+ " END; ";
}
}
}
很久以前寫過 「利用 tag 幫文字標注音 假名」可以在網誌裡達成 在漢字上面標示假名的效果
但在notion中 要如何做到
今日
は
暑
いですね
可以例用插入數學公式方式
/math
選擇「Inline equation」
輸入:
\overset{}{今日} は\overset{}暑いですね
\overset 讓字在上面,若漢字不只一個字 需要大括號括起來,才不會全都在第一個字上面
註:在這模式下,無法用一般的字形格式變粗體,但可在前面加上
\bf
整段就能是粗體字了!