blog.livedoor.jp JSON

blog.livedoor.jp external_link

by セコン モテメン 近藤淳也 snitch あっきぃ r_kurain |

Dan the Blogger

path: '^/dankogai/$', 
entryNodes: { 
    'div.blogbody': { 
        uri: 'h3 > a.aposted', 
        title: 'h3', 
        container: 'h3' 
    }
}

Dan the Permalinker

path: '^/dankogai/archives/\d+\.html', 
entryNodes: { 
    'div.blogbody': { 
        uri: 'window.location', 
        title: 'h3', 
        container: 'h3' 
    }
}

Basic Blog Template

path: '^/[\w-]+/$', 
entryNodes: { 
    'div.blogbody': { 
        uri: 'div.posted a', 
        title: 'h3', 
        container: 'h3' 
    },
    'div.article-title-outer': {
        uri: 'h2 a',
        title: 'h2',
        container: 'h2'
    }
}
path: '^/[\w-]+/archives/\d+\.html', 
entryNodes: { 
    'div.blogbody': { 
        uri: 'window.location', 
        title: 'h3', 
        container: 'h3' 
    },
    'div.article-title-outer': {
        uri: 'window.location',
        title: 'h2',
        container: 'h2'
    }
}