An open API service indexing awesome lists of open source software.

https://github.com/iensu/silicon-el

An emacs package for creating images from source code buffers using silicon
https://github.com/iensu/silicon-el

code-to-image emacs silicon

Last synced: 2 months ago
JSON representation

An emacs package for creating images from source code buffers using silicon

Awesome Lists containing this project

README

        

# silicon.el

A convenience package for creating images of the current source buffer using Silicon . It requires you to have the `silicon` command-line tool installed and preferably on your path. You can specify the path to the executable by setting `silicon-executable-path`.

The package declares `silicon-buffer-file-to-png` which tries to create a PNG of the current source code buffer. See the function doc string for more details.

## How to load

First clone this repository.

### Using `require`

Add this to your config:

```emacs-lisp
(add-to-list 'load-path "")
(require 'silicon)
```

### Using `use-package`

``` emacs-lisp
(use-package silicon
:load-path "")
```