2017 © Pedro Peláez
 

library fillet

A CMS to Sculpin converter suite

image

dragonmantank/fillet

A CMS to Sculpin converter suite

  • Wednesday, December 2, 2015
  • by dragonmantank
  • Repository
  • 2 Watchers
  • 10 Stars
  • 38 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 3 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Fillet - A CMS to Sculpin Converter

Code Climate, (*1)

Scrutinizer Code Quality, (*2)

Many people coming to Sculpin are coming from other CMSes out there in the wild. While almost all of these are database-backed, Sculpin isn't. Fillet will help convert exports from different CMSes into the HTML/Markdown format that Sculpin expects., (*3)

What this will /not/ do is create a Sculpin site from scratch from your existing blog. Fillet will simply parse a known format and create pages and posts for you, and convert as much stuff over as possible. You still need to create an index.html file, views, and configure Sculpin. We're just going to make it easier to get your content in., (*4)

If you have a favorite CMS and would like to help expand Fillet, help us write a parser!, (*5)

Currently supported CMSes: - Wordpress, via the XML Export, (*6)

Sample Usage

Use with Sculpin

There is a bundle version of this that integrates with Sculpin directly. You can find it at dragonmantank/fillet-sculpin-bundle, (*7)

Manual installation with Composer for development

Add Fillet to your site with Composer, (*8)

composer require "dragonmantank/fillet:dev-master"

You can use the following sample code to run Fillet., (*9)

<?php

require_once 'vendor/autoload.php';

$config = [
    'destinationFolders' => [
        'page' => __DIR__ . '/source/',
        'post' => __DIR__ . '/source/_posts/',
    ]
];

$fillet = new \Fillet\Fillet(new \Fillet\Parser\WordpressExport(), __DIR__ . '/mysite.xml', $config);
$fillet->parse();

Generating markdown with pandoc

If you have Pandoc installed, you can use it to generate markdown output instead of HTML by adding a pandoc key to $config:, (*10)

$config = [
    'destinationFolders' => [
        'page' => __DIR__ . '/source/',
        'post' => __DIR__ . '/source/_posts/',
    ],
    'pandoc' => [
        'to_markdown' => true,
        'bin' => '/usr/local/bin/pandoc',
    ]
];

The Versions

02/12 2015

dev-master

9999999-dev

A CMS to Sculpin converter suite

  Sources   Download

ISC

The Requires

 

26/02 2015

v0.1.0

0.1.0.0

A CMS to Sculpin converter suite

  Sources   Download

ISC

The Requires