File: steam.rb

package info (click to toggle)
tdiary-contrib 5.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,772 kB
  • sloc: ruby: 17,305; javascript: 8,263; lisp: 562; xml: 451; php: 61; sql: 40; makefile: 18
file content (21 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
# steam.rb $Revision: 1.0 $
#
# 概要:
# steam(store.steampowered.com)のゲームのウィジェットを
# 貼るプラグインです。
#
# 使い方:
# steamの任意のゲームのID(store.steampowered.com/app/{id})
# を指定することにより、ウィジェットが貼り付けられます。
#
# Copyright (c) 2016 kp <kp@mmho.net>
# Distributed under the GPL
#

=begin ChangeLog
=end

def steam( id )
   %Q[<iframe src="//store.steampowered.com/widget/#{id}/" frameborder="0" width="646" height="190" style="max-width:100%;"></iframe>]
end