From fb95f467f69e029f8f811f6401b4acfc0a3d2d47 Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Mon, 17 Apr 2017 05:02:56 -0300 Subject: [PATCH] Fix broken Markdown headings --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2f3135b..4446e96 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,14 @@ Check out the [current stable version!](http://www.sublimedash.com) ## How to create a widget New widgets can be created using HTML, JavaScript, and PHP. Here is an example news widget: -###HTML (index.php) +### HTML (index.php) ```
News
``` -###JavaScript (script.js) +### JavaScript (script.js) ``` function getNews(){ $.ajax({ @@ -31,7 +31,7 @@ $(document).ready(function() { }); ``` -###PHP (getNews.php) +### PHP (getNews.php) ``` $url = "http://news.yahoo.com/rss/"; $response = file_get_contents($url);