text($markdown); return $html; } /* * Generates cards for a given article. */ function article_card($article_id) { $article_query = 'SELECT * FROM articles WHERE article_id = ' . $article_id . ';'; $article = query_db_one_result($article_query); $article_tags_query = 'SELECT tag FROM article_tags INNER JOIN tags ON article_tags.tag_id = tags.tag_id WHERE article_id = ' . $article_id . ';'; $tags_results = query_db_one_or_more_results($article_tags_query); $tags_html = '
' . $article['excerpt'] . '