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 characters
| /* | |
| UPDATE: This is now a Chrome Extension: https://chrome.google.com/webstore/detail/memrise-export/hcllgkpmoiolndnhmbdceffaidjmkoam | |
| Source Code: https://github.com/raineorshine/memrise-export | |
| Export Memrise course words to CSV (technically TSV, or "tab separated file", but it is effectively the same). | |
| 1. Log into Memrise. | |
| 2. Navigate to the course page you would like to export (e.g. https://app.memrise.com/course/2156672/german-random-01/). | |
| 3. Open the browser's Developer Console (https://support.airtable.com/hc/en-us/articles/232313848-How-to-open-the-developer-console) |
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 characters
| <!-- 1. Return the area of Mongolia. --> | |
| <!-- Reminder: To return the value of an attribute attr, you must use data(@attr), although just @attr may be used in comparisons. You will need to remember this for some later questions as well. --> | |
| //country[@name = "Mongolia"]/data(@area) | |
| <!-- 2. Return the names of all cities that have the same name as the country in which they are located. --> | |
| //city[name = parent::country/data(@name)]/name |