Browse Source

Use footnote markdown feature

Tyler Hallada 6 years ago
parent
commit
e95350e6c1
1 changed files with 10 additions and 7 deletions
  1. 10 7
      _posts/2017-07-11-generating-random-poems-with-python.md

+ 10 - 7
_posts/2017-07-11-generating-random-poems-with-python.md

@@ -244,12 +244,7 @@ have no correspondence to the pronunciation. E.g.:
244 244
 
245 245
 > "meet" vs. "meat"
246 246
 
247
-The vowels are spelled differently, yet they rhyme.
248
-
249
-Fun fact: They used to be pronounced differently in Middle English during the
250
-invention of the printing press and standardized spelling. The [Great Vowel
251
-Shift](https://en.wikipedia.org/wiki/Great_Vowel_Shift) happened after, and is
252
-why they are now pronounced the same.
247
+The vowels are spelled differently, yet they rhyme [^1].
253 248
 
254 249
 So if the spelling of the words is useless in telling us if two words rhyme,
255 250
 what can we use instead?
@@ -261,7 +256,7 @@ The IPA is an alphabet that can represent all varieties of human pronunciation.
261 256
 * meet: /mit/
262 257
 * meat: /mit/
263 258
 
264
-Note: this is only the IPA transcription for only one **accent** of English.
259
+Note that this is only the IPA transcription for only one **accent** of English.
265 260
 Some English speakers may pronounce these words differently which could be
266 261
 represented by a different IPA transcription.
267 262
 
@@ -510,3 +505,11 @@ you'll be almost ready to run a TensorFlow port of word-rnn:
510 505
 
511 506
 I plan on playing around with NNs a lot more to see what kind of poetry-looking
512 507
 text I can generate from them.
508
+
509
+---
510
+
511
+[^1]:
512
+    Fun fact: They used to be pronounced differently in Middle English during
513
+    the invention of the printing press and standardized spelling. The [Great
514
+    Vowel Shift](https://en.wikipedia.org/wiki/Great_Vowel_Shift) happened
515
+    after, and is why they are now pronounced the same.