Revisions
-
DavidWells revised this gist
Jul 26, 2019 . No changes.There are no files selected for viewing
-
DavidWells revised this gist
Jan 7, 2018 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -35,4 +35,8 @@ This is the code you need to align images to the right: </p> ``` --- ## Markdown Formatting on steriods If you like this, you might enjoy [markdown-magic](https://github.com/davidwells/markdown-magic). I built it to automatically format markdown files and allow folks to sync docs/code/data from external sources. -
DavidWells revised this gist
Dec 1, 2016 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ # Aligning images ## `left` alignment <img align="left" width="100" height="100" src="http://www.fillmurray.com/100/100"> @@ -12,7 +12,7 @@ This is the code you need to align images to the left: --- ## `right` alignment <img align="right" width="100" height="100" src="http://www.fillmurray.com/100/100"> @@ -23,7 +23,7 @@ This is the code you need to align images to the right: --- ## `center` alignment example <p align="center"> <img width="460" height="300" src="http://www.fillmurray.com/460/300"> -
DavidWells revised this gist
Dec 1, 2016 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,6 @@ This is the code you need to align images to the left: <img align="left" width="100" height="100" src="http://www.fillmurray.com/100/100"> ``` --- ### `right` alignment -
DavidWells revised this gist
Dec 1, 2016 . No changes.There are no files selected for viewing
-
DavidWells created this gist
Nov 29, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ ## Aligning images ### `left` alignment <img align="left" width="100" height="100" src="http://www.fillmurray.com/100/100"> This is the code you need to align images to the left: ``` <img align="left" width="100" height="100" src="http://www.fillmurray.com/100/100"> ``` Here is a markdown snippet that demos image alignment --- ### `right` alignment <img align="right" width="100" height="100" src="http://www.fillmurray.com/100/100"> This is the code you need to align images to the right: ``` <img align="right" width="100" height="100" src="http://www.fillmurray.com/100/100"> ``` --- ### `center` alignment example <p align="center"> <img width="460" height="300" src="http://www.fillmurray.com/460/300"> </p> ``` <p align="center"> <img width="460" height="300" src="http://www.fillmurray.com/460/300"> </p> ``` ---