amwps290 在 请问有人有过 jekyll-theme-chirpy 这个主题吗? 中发帖
想要使用 highlight 来高亮代码,一直无效。
{% highlight cpp %}
/*
** This routine is a no-op if the database schema is already initialized.
** Otherwise, the schema is loaded. An error code is returned.
*/
int sqlite3ReadSchema(Parse *pParse){
int rc = SQLITE_OK;
sqlite3 *db = pParse->db;
assert( sqlite3_mutex_held(db->mutex) );
if( !db->init.busy ){
rc = sqlite3Init(db, &pParse->zErrMsg);
if( rc...