From 51bf45b4258dc85e6273c445d8e8bbf4688056ad Mon Sep 17 00:00:00 2001 From: Justin Wernick Date: Wed, 7 Jun 2023 21:44:08 +0200 Subject: Language tags on the codeblocks --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 47194fb..e359a22 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ and [here](http://knowles.co.za/generating-south-african-id-numbers/). Download the library from NPM using the following command in a terminal: -``` +```sh npm install --save south-african-id-parser ``` ### Usage In NodeJS -``` +```js var saIdParser = require('south-african-id-parser'); var info = saIdParser.parse('9001049818080'); ``` @@ -38,7 +38,7 @@ var info = saIdParser.parse('9001049818080'); When used in the browser, the library will add the `saIdParser` object to the window for you to use. -``` +```html