사용자 도구

사이트 도구


wiki:recommended_plugin
[공지]회원 가입 방법
[공지]글 작성 및 수정 방법

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
wiki:recommended_plugin [2022/02/10] 정승환wiki:recommended_plugin [2023/10/30] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 ======추천 플러그인====== ======추천 플러그인======
  
-=====인클루드=====+=====Include=====
 https://www.dokuwiki.org/plugin:include https://www.dokuwiki.org/plugin:include
  
줄 16: 줄 16:
 도쿠위키에 다양한 새로운 위키 문법을 추가해준다. 필수. 특히 dw2pdf 와 같은 플러그인과 완벽 호환됨. 도쿠위키에 다양한 새로운 위키 문법을 추가해준다. 필수. 특히 dw2pdf 와 같은 플러그인과 완벽 호환됨.
  
-====== Examples for the Wrap Plugin ======+{{page>wiki/examples_for_the_wrap_plugin&linkonly&}}
  
-===== Basic syntax =====+이 밖에도 많은 문법 기능이 추가된다.\\ 
 +편집기 위에 메뉴가 나타나므로 몇가지 제외하고 문법을 따로 익힐필요는 없어보임 
 +=====SocialCard=====
  
-An uppercase **%%<WRAP>%%** (or alternatively **%%<block>%%** or **%%<div>%%**) creates a **''div''** and should be used for **"big"** containers, **surrounding** paragraphs, lists, tables, etc.+https://www.dokuwiki.org/plugin:socialcards
  
-<code> +SNS에 링크할시 자동으로 오픈 그래프를 표시해준다.
-<WRAP classes #id width :language> +
-"big" content +
-</WRAP>+
  
-or +페이스북은 이미지가 안나오는 버그가 있으나 action.php에서 og:image 부분의 $secure 부분 삭제를 통해 버그 수정 가능 
-<block classes #id width :language> +
-"big" content +
-</block>+
  
-or +=====Upgrade=====
-<div classes #id width :language> +
-"big" content +
-</div> +
-</code>+
  
-A lowercase **%%<wrap>%%** (or alternatively **%%<inline>%%** or **%%<span>%%**) creates a **''span''** and should be used for **"small"** containers, **inside** paragraphs, lists, tables, etc.+https://www.dokuwiki.org/plugin:upgrade
  
-<code> +도쿠위키에 자체 도쿠위키 업그레이드 기능을 추가해준다. 
-<wrap classes #id width :language>"small" content</wrap>+시놀로지 DSM7.0 이후로 도쿠위키에 대한 시놀로지 패키지 지원이 끊겼지만, 이 플러그인이 있다면, 이미 설치 되어 있는 도쿠위키는 계속 유지 보수 가능하다.
  
-or +사실 DSM7.0에 도쿠위키를 새로 설치하는 것도 어렵지는 않다. 다운로드 받아서 설치하면 됨. 
-<inline classes #id width :language>"small" content</inline>+Windows 용의 마이크로 aphache 가 포함되어 설치도 가능함....
  
-or +https://download.dokuwiki.org/
-<span classes #id width :language>"small" content</span> +
-</code>+
  
-:!: Please note, some things **won't work with lowercase spans**: +=====DISQUS===== 
-  * **alignments** (including alignments generated by changing the text direction) +DISQUS 댓글 시스템을 도쿠위키에 설치할 수 있게 해준다.
-  * **multi-columns** +
-  * and **widths** +
-if the according wrap isn't floated as well.+
  
-A shorthand of uppercase **%%<WRAP />%%** and lowercase **%%<wrap />%%** are available if the container is empty or unnecessary.+해당 플러그인의 설명에는 아래의 코드를 사용하는 탬플릿의 Main.php 에 댓글이 표시되고 싶은 위치 에 넣으면 된다고 하는데, 사실 $shortname 을 자신의 Disqus Shortname 으로 적어주어야만 제대로 동작한다 뭔가 변소 호출에 실패 하는 듯하다.
  
-<code> +https://www.dokuwiki.org/plugin:disqus
-<WRAP classes #id /+
-or +
-<block classes #id /+
-or +
-<div classes #id /+
-</code>+
  
-and +<code><?php 
-<code> +global $ACT; 
-<wrap classes #id /> +if($ACT == 'show'){ 
-or +    $disqus = &plugin_load('syntax','disqus'); 
-<inline classes #id /+    if($disqus) echo $disqus->_disqus($shortname); 
-or +} 
-<span classes #id />+?>
 </code> </code>
  
-===== Classes and Styles =====+를 아래와 같이 해야한다.
  
- +<code><?php 
-==== Columns and Floats ==== +global $ACT; 
- +if($ACT == 'show'){ 
-You can have columns easily by adding the class ''column'' and a width, e.g. +    $disqus &plugin_load('syntax','disqus'); 
-  <WRAP column 30%>...content...</WRAP+    if($disqus) echo $disqus->_disqus("실제DISQUS쇼트네임"); 
- +} 
-The example below uses the following structure: +?>
- +
-<code> +
-<WRAP group> +
- +
-<WRAP third column>...content...</WRAP> +
-<WRAP third column>...content...</WRAP> +
-<WRAP third column>...content...</WRAP> +
- +
-</WRAP>+
 </code> </code>
  
 +필자의 경우는 아래와 같이 wikipage stop 과 page info 사이에 코드를 넣어서 작동하게 했다.
  
-<WRAP group> +{{:wiki:20221014-172042.png}}
-<WRAP third column> +
-=== Floating Options === +
- +
-Normally you would only need the class ''column'', but for more sophisticated uses (not only for columns, but for any other classes, like [[#boxes and notes]] as well) you can have several kinds of "floats": +
- +
-  * **''column''** is the same as ''left'' in LTR languages and the same as ''right'' in RTL languages +
-  * **''left''** will let you float your wrap on the left +
-  * **''right''** will let the wrap float right +
-  * **''center''** will position the wrap in the horizontal center of the page +
-</WRAP> +
- +
-<WRAP third column> +
-=== Widths === +
- +
-You can set any valid widths (but only on divs): ''%, px, em, rem, ex, ch, vw, vh, pt, pc, cm, mm, in'', but most of the time you'd only want either +
- +
-^type^e.g.^note^ +
-^''%''|''30%''|makes sense in most cases| +
-^''px''|''420px''|makes sense if your container contains images with a certain width| +
-^''em''|''20em''|makes sense if you like your wrap container to grow and shrink with the font size| +
- +
-</WRAP> +
-<WRAP third column> +
-=== Width Keywords === +
- +
-With certain width keywords you can fit your columns automatically to fill the available horizontal space. Those columns will also react to the screen size, so will be responsive and wrap underneath each other on mobile devices. +
- +
-There are four width keywords. These should not be combined with any other width, only ''third'' can be combined with ''twothirds''+
- +
-  * **''half''** fits two columns in a row +
-  * **''third''** fits three columns in a row +
-  * **''quarter''** fits four columns in a row +
-  * **''twothirds''** together with ''third'' fits a 2/3 and a 1/3 column in a row +
- +
-:!: Attention: In order to work properly, wraps with width keywords need an **additional ''%%<WRAP group>%%'' around a set** of them. If you mix several types in one group, you might need a ''%%<WRAP clear/>%%'' after a row. +
- +
-</WRAP> +
- +
-</WRAP> +
- +
-You can use the same options with spans (as each element that floats is automatically a block level element), but it probably doesn't make too much sense. :!: Widths on spans normally do not work (by design), but can make sense, when it is floating. +
- +
-:!: Attention: What is the difference between widths and width keywords and when is it best to use which? **Widths** can cause problems and will never fully add up, therefore will break the layout under some circumstances. (See [[http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug|box model]] for a technical explanation.) So, getting widths right will need some fiddling around and testing in various browsers. **Width keywords** on the other hand fit automatically and work better on mobile devices. But the drawback is that they need an extra wrap around them and don't work properly in older browsers (IE8 and under). +
- +
-All of those options will also work in the [[#boxes and notes]] wraps (see below). +
- +
-=== Old Emulated Headline (deprecated) === +
- +
-When the ''emulatedHeadlines'' config option is enabled, every ''%%//**__text like this__**//%%'' or ''%%//**like that**//%%'' will create an "emulated headline" within a wrap. This feature is deprecated and will be removed at some point as standard headlines within wraps are supported for a while now. +
- +
-If that config options is enabled and you need text that is bold and italic, simply use it the other way around''%%**//No Headline//**%%''+
- +
- +
-=== Multi-columns === +
- +
-<WRAP colmedium> +
-Multi-columns work best in modern browsers (no IE9 and below) but should still be considered experimental as some browser behaviour is still inconsistent and buggy. +
- +
-Just use **''%%colsmall%%''** for small width columns, **''%%colmedium%%''** for medium width columns and **''%%collarge%%''** for large width columns. +
-Or you can use **''%%col2%%''** for 2 columns, **''%%col3%%''** for 3 columns, **''%%col4%%''** for 4 columns and **''%%col5%%''** for 5 columns. +
-The former type of column is determined by its width, the latter by its amount. The width-based columns are ideal for different layouts and device widths. +
- +
-:!: Note: Multi-columns don't make sense for spans. +
-</WRAP> +
- +
-Don't use this for bigger columns containing more than just text. Use the [[#columns and floats]] mentioned above instead. +
- +
- +
-==== Alignments ==== +
- +
-You can use these different text alignments: +
- +
-  * ''leftalign'' +
-  * ''rightalign'' +
-  * ''centeralign'' +
-  * ''justify'' +
- +
-<WRAP centeralign> +
-Center aligned text ... +
-</WRAP> +
- +
-<WRAP rightalign> +
-... and right aligned. +
-</WRAP> +
- +
-<code> +
-<WRAP centeralign> +
-Center aligned text ... +
-</WRAP> +
- +
-<WRAP rightalign> +
-... and right aligned. +
-</WRAP> +
-</code> +
- +
-:!: You cannot add alignments to spans. +
- +
- +
-==== Boxes and Notes ==== +
- +
-<WRAP round box 500px center> +
-=== round box 500px center === +
- +
-  * ''box'' creates a box around the container and uses the colours from the template's ''style.ini'' as default colours (''%%__background_alt__%%'' and ''%%__text__%%''+
-  * any of the classes ''info'', ''tip'', ''important'', ''alert'', ''help'', ''download'', ''todo'' will add a special note container with a corresponding icon +
-  * the classes ''danger'', ''warning'', ''caution'', ''notice'', ''safety'' use safety colours (and no icons) +
-  * ''round'' can be added to anything with a background colour or a border and will only work in modern browsers (no IE8 and under) +
-</WRAP> +
- +
- +
-<WRAP info 300px left> +
-=== Info === +
-%%<WRAP info></WRAP>%% +
-</WRAP> +
- +
- +
-<WRAP tip 300px left> +
-=== Tip === +
-%%<WRAP tip></WRAP>%% +
-</WRAP> +
- +
- +
-<WRAP important 300px left> +
-=== Important === +
-%%<WRAP important></WRAP>%% +
-</WRAP> +
- +
- +
-<WRAP alert 300px left> +
-=== Alert === +
-%%<WRAP alert></WRAP>%% +
-</WRAP> +
- +
- +
-<WRAP round help 300px left> +
-=== Help === +
-%%<WRAP round help></WRAP>%% +
-</WRAP> +
- +
- +
-<WRAP download 300px left> +
-=== Download === +
-%%<WRAP download></WRAP>%% +
-</WRAP> +
- +
- +
-<WRAP todo 300px left> +
-=== Todo === +
-%%<WRAP todo></WRAP>%% +
-</WRAP> +
- +
- +
-<WRAP clear /> +
- +
- +
-**Safety Notes:** +
- +
-Best only use simple markup in safety notes. +
- +
-<WRAP danger 30% left> +
-=== Danger === +
-%%<WRAP danger></WRAP>%% +
-</WRAP> +
- +
-<WRAP warning 30% left> +
-=== Warning === +
-%%<WRAP warning></WRAP>%% +
-</WRAP> +
- +
-<WRAP caution 30% left> +
-=== Caution === +
-%%<WRAP caution></WRAP>%% +
-</WRAP> +
- +
-<WRAP round notice 30% left> +
-=== Notice === +
-%%<WRAP round notice></WRAP>%% +
-</WRAP> +
- +
-<WRAP round safety 30% left> +
-=== Safety === +
-%%<WRAP round safety></WRAP>%% +
-</WRAP> +
- +
-<WRAP clear /> +
- +
- +
-You can use notes and boxes also inside text with spans like this: +
-<wrap info>info</wrap>, <wrap help>help</wrap>, <wrap alert>alert</wrap>, <wrap important>important</wrap>, <wrap tip>tip</wrap>, <wrap download>download</wrap>, <wrap todo>todo</wrap> and <wrap round box>round box</wrap> and <wrap danger>danger</wrap>, <wrap warning>warning</wrap>, <wrap caution>caution</wrap>, <wrap notice>notice</wrap>, <wrap safety>safety</wrap>+
-  <wrap info>info</wrap>, <wrap help>help</wrap>, ... +
- +
-==== Marks ==== +
- +
-You can mark text as <wrap hi>highlighted</wrap>, <wrap lo>less significant</wrap> and <wrap em>especially emphasised</wrap>+
- +
-  You can mark text as <wrap hi>highlighted</wrap>, <wrap lo>less significant</wrap> and <wrap em>especially emphasised</wrap>+
- +
-:!: This might look ugly in some templates and should be adjusted accordingly. +
- +
-==== Tabs ==== +
- +
-You can create a row of tabs by simply wrapping a list of links in ''%%<WRAP tabs></WRAP>%%''+
- +
-<WRAP tabs> +
-  * [[Some page]] +
-  * [[example|This page]] +
-  * [[Another page]] +
-</WRAP> +
- +
-  <WRAP tabs> +
-    * [[Some page]] +
-    * [[example|This page]] +
-    * [[Another page]] +
-  </WRAP> +
- +
-:!: Please note, the styling of these tabs depend on the template you are using and not on the wrap plugin. If you only see a list of links and no tabs, please make sure to add "tabs" to the ''noPrefix'' config option and that your template supports at least the 2012-01-25 "Angua" DokuWiki release. +
- +
-==== Miscellaneous ==== +
- +
-=== Clear float === +
- +
-After using any of the float classes, you might come across following text protruding into the space where only the floating containers should be. To prevent that, you should simply add this after your last column: +
- +
-  <WRAP clear /> +
- +
-=== Table width === +
- +
-You can set the width of a table via ''tablewidth'' as every table inside that wrap will always be 100% wide. This makes it possible to give tables any width by adding an additional width to the wrap (or none for 100%). +
- +
-<WRAP tablewidth 80%> +
-^ Table ^ is ^ +
-| 80% | wide | +
-</WRAP> +
- +
-  <WRAP tablewidth 80%> +
-  ^ Table ^ is ^ +
-  | 80% | wide | +
-  </WRAP> +
- +
-=== Indent === +
- +
-<wrap indent>This text will appear indented.</wrap> +
- +
-  <wrap indent>This text will appear indented.</wrap> +
- +
-=== Outdent === +
- +
-<wrap outdent>This text will appear "outdented".</wrap> +
- +
-  <wrap outdent>This text will appear "outdented".</wrap> +
- +
-=== Prewrap === +
- +
-<WRAP prewrap 250px> +
-<code> +
-Inside this code block the words will wrap to a new line although they are all in one line. +
-</code> +
-</WRAP> +
- +
-  <WRAP prewrap 250px> +
-  <code> +
-  Inside this code block the words will wrap to a new line although they are all in one line. +
-  </code> +
-  </WRAP> +
- +
-=== Spoiler === +
- +
-Here follows a spoiler: <wrap spoiler>Darth Vader is Luke's father.</wrap> +
- +
-  Here follows a spoiler: <wrap spoiler>Darth Vader is Luke's father.</wrap> +
- +
-Just select the text in the spoiler box to be able to read its content. +
- +
-=== Button links === +
- +
-A link that looks like a button: <wrap button>[[wiki:Syntax]]</wrap> +
- +
-  A link that looks like a button: <wrap button>[[wiki:Syntax]]</wrap> +
- +
-=== Hide === +
- +
-The following text is hidden: <wrap hide>John, please revise that sentence.</wrap> +
- +
-  The following text is hidden: <wrap hide>John, please revise that sentence.</wrap> +
- +
-:!: Warning: The text will still appear in the source code, in non-modern browsers and is searchable. Do not hide any security risky secrets with it! +
- +
-=== Pagebreak === +
- +
-The following will add a pagebreak: <WRAP pagebreak /> +
- +
-  The following will add a pagebreak: <WRAP pagebreak /> +
- +
-This has no effect on the browser screen. A [[http://reference.sitepoint.com/css/page-break-after|pagebreak]] will force a new page in printouts. +
- +
-=== Nopagebreak === +
- +
-The following will try to avoid a pagebreak: <WRAP nopagebreak>much content, belonging together (like a long table)</WRAP> +
- +
-  The following will try to avoid a pagebreak: <WRAP nopagebreak>much content, belonging together (like a long table)</WRAP> +
- +
-This also has no effect on the browser screen. It will try to [[http://reference.sitepoint.com/css/page-break-inside|avoid a page break]] in printouts. +
- +
-=== Noprint === +
- +
-<wrap noprint>This text appears on the screen, but not in print.</wrap> +
- +
-  <wrap noprint>This text appears on the screen, but not in print.</wrap> +
- +
-=== Onlyprint === +
- +
-<wrap onlyprint>This text does not appear on the screen, but only in print.</wrap> +
- +
-  <wrap onlyprint>This text does not appear on the screen, but only in print.</wrap> +
- +
- +
-==== Combining and Nesting ==== +
- +
-You can combine and nest all classes and types of boxes, e.g. +
- +
-<WRAP box 350px right :en> +
-===Outer box floats right === +
- +
-<WRAP 165px left> +
-Inner nested box floats left and is partly <wrap em hi>__em__phasized and __hi__ghlighted with a nested <wrap notice>__notice__</wrap> inside</wrap>+
-</WRAP> +
- +
-Text inside outer right box, but beneath inner left box. +
- +
-<WRAP clear /> +
- +
-<WRAP round tip> +
-Round tip box underneath, after a ''clear''+
-</WRAP> +
- +
-</WRAP> +
- +
- +
-<code> +
-<WRAP box 350px right :en> +
-=== Outer box floats right === +
- +
-<WRAP 165px left> +
-Inner nested box floats left and is partly <wrap em hi>__em__phasized and __hi__ghlighted with a nested <wrap notice>__notice__</wrap> inside</wrap>+
-</WRAP> +
- +
-Text inside outer right box, but beneath inner left box. +
- +
-<WRAP clear /> +
- +
-<WRAP round tip> +
-Round tip box underneath, after a ''clear''+
-</WRAP> +
- +
-</WRAP> +
-</code> +
- +
- +
-===== Language and Text Direction ===== +
- +
-You can change the language and the reading direction of a wrap container by simply adding a colon followed by the language code, like this: +
- +
-<code> +
-<WRAP :he> +
-זה עברית. ((<wrap :en>This means "This is Hebrew.", at least according to [[http://translate.google.com/|Google Translate]].</wrap>)) +
-</WRAP> +
-</code> +
- +
-<WRAP :he> +
-זה עברית. ((<wrap :en>This means "This is Hebrew.", at least according to [[http://translate.google.com/|Google Translate]].</wrap>)) +
-</WRAP> +
- +
-The text direction (''rtl'', right to left or ''ltr'', left to right) will get inserted automatically and is solely dependent on the language. The list of currently supported languages is taken from: http://meta.wikimedia.org/wiki/Template:List_of_language_names_ordered_by_code +
-(If you specify a language not listed there, it simply won't do anything.) +
- +
-이 밖에도 많은 문법 기능이 추가된다.\\ +
-편집기 위에 메뉴가 나타나므로 몇가지 제외하고 문법을 따로 익힐필요는 없어보임 +
-======SocialCard====== +
- +
-https://www.dokuwiki.org/plugin:socialcards +
- +
-SNS에 링크할시 자동으로 오픈 그래프를 표시해준다. +
- +
-페이스북은 이미지가 안나오는 버그가 있으나 action.php에서 og:image 부분의 $secure 부분 삭제를 통해 버그 수정 가능  +
- +

[홈레코딩 필독서]"모두의 홈레코딩"구매링크


wiki/recommended_plugin.1644427517.txt.gz · 마지막으로 수정됨: 2022/02/10 저자 정승환