diff --git a/.markdownlint.json b/.markdownlint.json
index 5cff56c349210..ecb22f24e047d 100644
--- a/.markdownlint.json
+++ b/.markdownlint.json
@@ -6,7 +6,6 @@
"MD006": false,
"MD007": false,
"MD009": false,
- "MD010": false,
"MD012": false,
"MD013": false,
"MD014": false,
diff --git a/locale/en/blog/uncategorized/ldapjs-a-reprise-of-ldap.md b/locale/en/blog/uncategorized/ldapjs-a-reprise-of-ldap.md
index 933199ac862f0..1ecf19a7237e9 100644
--- a/locale/en/blog/uncategorized/ldapjs-a-reprise-of-ldap.md
+++ b/locale/en/blog/uncategorized/ldapjs-a-reprise-of-ldap.md
@@ -58,10 +58,10 @@ Oh, and on top of the technical merits, better or worse, it's an established st
As I said earlier, I spent a lot of time at IBM observing how customers used LDAP, and the real items I took away from that experience were:
- - LDAP implementations have suffered a lot from never having been designed from the ground up for a large number of concurrent connections with asynchronous operations.
- - There are use cases for LDAP that just don't always fit the traditional "here's my server and storage engine" model. A lot of simple customer use cases wanted an LDAP access point, but not be forced into taking the heavy backends that came with it (they wanted the original gateway model!). There was an entire "sub" industry for this known as "meta directories" back in the late 90's and early 2000's.
- - Replication was always a sticking point. LDAP vendors all tried to offer a big multi-master, multi-site replication model. It was a lot of "bolt-on" complexity, done before the CAP theorem was written, and certainly before it was accepted as "truth."
- - Nobody uses all of the protocol. In fact, 20% of the features solve 80% of the use cases (I'm making that number up, but you get the idea).
+ - LDAP implementations have suffered a lot from never having been designed from the ground up for a large number of concurrent connections with asynchronous operations.
+ - There are use cases for LDAP that just don't always fit the traditional "here's my server and storage engine" model. A lot of simple customer use cases wanted an LDAP access point, but not be forced into taking the heavy backends that came with it (they wanted the original gateway model!). There was an entire "sub" industry for this known as "meta directories" back in the late 90's and early 2000's.
+ - Replication was always a sticking point. LDAP vendors all tried to offer a big multi-master, multi-site replication model. It was a lot of "bolt-on" complexity, done before the CAP theorem was written, and certainly before it was accepted as "truth."
+ - Nobody uses all of the protocol. In fact, 20% of the features solve 80% of the use cases (I'm making that number up, but you get the idea).
For all the good parts of LDAP, those are really damned big failing points, and even I eventually abandoned LDAP for the greener pastures of NoSQL somewhere
@@ -70,10 +70,10 @@ aspects of the protocol itself too, but that's a lot harder).
Well, in the last year, I went to work for Joyent, and like everyone else, we have several use problems that are classic directory service problems. If you break down the list I outlined above:
- - Connection-oriented and asynchronous: Holy smokes batman, node.js is a completely kick-ass event-driven asynchronous server platform that manages connections like a boss. Check!
- - Lots of use cases: Yeah, we've got some. Man, the sinatra/express paradigm is so easy to slap over anything. How about we just do that and leave as many use cases open as we can. Check!
- - Replication is hard. CAP is right: There are a lot of distributed databases out vying to solve exactly this problem. At Joyent we went with Riak. Check!
- - Don't need all of the protocol: I'm lazy. Let's just skip the stupid things most people don't need. Check!
+ - Connection-oriented and asynchronous: Holy smokes batman, node.js is a completely kick-ass event-driven asynchronous server platform that manages connections like a boss. Check!
+ - Lots of use cases: Yeah, we've got some. Man, the sinatra/express paradigm is so easy to slap over anything. How about we just do that and leave as many use cases open as we can. Check!
+ - Replication is hard. CAP is right: There are a lot of distributed databases out vying to solve exactly this problem. At Joyent we went with Riak. Check!
+ - Don't need all of the protocol: I'm lazy. Let's just skip the stupid things most people don't need. Check!
So that's the crux of ldapjs right there. Giving you the ability to put LDAP back into your application while nailing those 4 fundamental problems that plague most existing LDAP deployments.