From 6b749e3c0d1a605b87bcf55253ccc7aeb33290d5 Mon Sep 17 00:00:00 2001 From: Josh Suereth Date: Wed, 15 Jan 2014 11:52:02 -0800 Subject: [PATCH] Updated Server Build level API (markdown) --- Server---Build-level-API.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Server---Build-level-API.md b/Server---Build-level-API.md index de57194..285457f 100644 --- a/Server---Build-level-API.md +++ b/Server---Build-level-API.md @@ -1,13 +1,13 @@ The server aspects to sbt build will be exposed to build/plugin authors as follows: -1. A new key available which can be used to interact with the server: +# 1. A new key available which can be used to interact with the server: ```scala val uiContext = taskKey[sbt.UIContext]("All user interaction should be driven through this interface.") ``` -2. A new interface: +# 2. A new interface: ```scala package sbt @@ -21,7 +21,8 @@ trait UIContext { } ``` -3. An addition to plugin API: +# 3. An addition to plugin API: + ```scala trait Plugin { def serializers: Seq[(AttributeKey[_], Format[_])] = Nil