1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00

Merge pull request #91 from efx/ingest-js-map

ingest JavaScript map to nu to md
This commit is contained in:
Darren Schroeder 2021-08-27 18:46:02 -05:00 committed by GitHub
commit a0f5017662
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,2 @@
# Ingest JavaScript Map JSON into nu then to markdown
open ../sample_data/js_map.json | each { echo [[Español English]; [ $it.0 $it.1]] } | to md

6
sample_data/js_map.json Normal file
View file

@ -0,0 +1,6 @@
[
["cero", "zero"],
["uno", "one"],
["dos", "two"],
["tres", "three"]
]