fixed markup

This commit is contained in:
Dominik Liebler 2013-09-03 14:49:31 +02:00
parent 2ee83307ee
commit d4e74ce175

View File

@ -10,39 +10,39 @@ The patterns can be structured in roughly three different categories:
## Creational ## Creational
* [AbstractFactory](tree/master/AbstractFactory) * [AbstractFactory](AbstractFactory)
* [Builder](tree/master/Builder) * [Builder](Builder)
* [SimpleFactory](tree/master/SimpleFactory) * [SimpleFactory](SimpleFactory)
* [FactoryMethod](tree/master/FactoryMethod) * [FactoryMethod](FactoryMethod)
* [StaticFactory](tree/master/StaticFactory) * [StaticFactory](StaticFactory)
* [Prototype](tree/master/Prototype) * [Prototype](Prototype)
* [Singleton](tree/master/Singleton) (is considered an anti-pattern! :no_entry:) * [Singleton](Singleton) (is considered an anti-pattern! :no_entry:)
* [Multiton](tree/master/Multiton) (is considered an anti-pattern! :no_entry:) * [Multiton](Multiton) (is considered an anti-pattern! :no_entry:)
## Structural ## Structural
* [Adapter](tree/master/Adapter) * [Adapter](Adapter)
* [Composite](tree/master/Composite) * [Composite](Composite)
* [Decorator](tree/master/Decorator) * [Decorator](Decorator)
* [Facade](tree/master/Facade) * [Facade](Facade)
* [Proxy](tree/master/Proxy) * [Proxy](Proxy)
* [Registry](tree/master/Registry) * [Registry](Registry)
* [FluentInterface](tree/master/FluentInterface) * [FluentInterface](FluentInterface)
* [DataMapper](tree/master/DataMapper) * [DataMapper](DataMapper)
* [DependencyInjection](tree/master/DependencyInjection) * [DependencyInjection](DependencyInjection)
## Behavioral ## Behavioral
* [ChainOfResponsibilities](tree/master/ChainOfResponsibilities) * [ChainOfResponsibilities](ChainOfResponsibilities)
* [Command](tree/master/Command) * [Command](Command)
* [Iterator](tree/master/Iterator) * [Iterator](Iterator)
* [Mediator](tree/master/Mediator) * [Mediator](Mediator)
* [NullObject](tree/master/NullObject) * [NullObject](NullObject)
* [Observer](tree/master/Observer) * [Observer](Observer)
* [StatusPattern](tree/master/StatusPattern) * [StatusPattern](StatusPattern)
* [Strategy](tree/master/Strategy) * [Strategy](Strategy)
* [TemplateMethod](tree/master/TemplateMethod) * [TemplateMethod](TemplateMethod)
* [Visitor](tree/master/Visitor) * [Visitor](Visitor)
*Please feel free to fork and extend existing or add your own examples!* *Please feel free to fork and extend existing or add your own examples!*