« Aide:Forum » : différence entre les versions
mAucun résumé des modifications |
mAucun résumé des modifications |
||
(3 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
[[Fichier:Nefald Forum.png|thumb|290px|Notre <span id="plainlink">[ | [[Fichier:Nefald Forum.png|thumb|290px|Notre <span id="plainlink">[https://nefald.fr/forum/ forum]</span> tel que peut le voir un [[Maraud]] <small>(Janvier 2016)</small>.]] | ||
[http:// | Pour faire tourner notre forum, nous utilisons [http://flarum.org/ **Flarum**], un [https://fr.wikipedia.org/wiki/Syst%C3%A8me_de_gestion_de_contenu CMS] tout récent qui de part son interface, veut plus intuitif et user-friendly, mais aussi de part sa conception qui tend à favoriser l'implication des nouveaux membres. | ||
Pour poster sur le forum s'offre à vous deux langages, le traditionnel BBCode mais aussi le **Markdown**. | |||
== Markdown== | |||
Le [https://fr.wikipedia.org/wiki/Markdown **Markdown**] est un langage de balisage léger créé par John Gruber en 2004. Son but est d'offrir une syntaxe facile à lire et à écrire. | |||
== Les bases== | |||
=== Gras=== | |||
Cernez votre mot/phrase de deux astérisques: | |||
=== | <code> | ||
**Bonjour, je suis Gras mais je me soigne.** | |||
</code> | |||
**Bonjour, je suis Gras mais je me soigne.** | |||
=== Italique=== | |||
Cernez votre mot/phrase d'un astérisque: | |||
<code> | |||
*Bonjour, je suis italique, je viens d'Italie.* | |||
</code> | |||
* | *Bonjour, je suis italique, je viens d'Italie.* | ||
=== Barré=== | |||
Cernez votre mot/phrase de deux tildes: | |||
<code> | |||
~~Bonjour, je n'ai pas voix au chapître, je suis mal barré.~~ | |||
</code> | |||
~~Bonjour, je n'ai pas voix au chapître, je suis mal barré.~~ | |||
=== Citation=== | |||
Faite préceder la ligne d'un chevron supérieur | |||
<code>> La paix n'est que mensonge. | |||
Il n'y a que la passion. | |||
Il y a | Par la passion, j'ai la puissance. | ||
Par la puissance, j'ai le pouvoir. | |||
Par le pouvoir, j'ai la victoire. | |||
Par la victoire, mes chaînes se brisent. | |||
La Force me libérera.</code> | |||
<quote> La paix n'est que mensonge. | |||
Il n'y a que la passion. | |||
Par la passion, j'ai la puissance. | |||
Par la puissance, j'ai le pouvoir. | |||
Par le pouvoir, j'ai la victoire. | |||
Par la victoire, mes chaînes se brisent. | |||
La Force me libérera.</quote> | |||
=== Liste=== | |||
Faites précéder chaque ligne d'un astérisque suivi d'un espace | |||
<code> | |||
* Bonjour, je suis le premier élément d'une liste | |||
* Bonjour! Je suis le second élément de cette liste | |||
</code> | |||
* Bonjour, je suis le premier élément d'une liste | |||
* Bonjour! Je suis le second élément de cette liste | |||
=== Lien=== | |||
<code> | |||
Bonjour je suis un [Lien](https://nefald.fr/). | |||
</code> | |||
Bonjour je suis un [Lien](https://nefald.fr/). | |||
=== Image=== | |||
Pour insérer une image sur le forum nous vous demandons d'utiliser le bouton de téléversement situé en bas de votre fenêtre de rédaction. **Il est très fortement recommandé** à nos utilisateurs d'utiliser ce seul moyen afin de partager leurs images, en effet nos sites étant entièrement cryptés si vous insérez dans vos messages des images téléversées sur des sites ne supportant pas le protocole https, certains navigateurs bloqueront partiellement le chargement des pages de notre forum, ce qui est nuisible. | |||
* | |||
De plus cela vous assure que vos images seront conservées sur le forum et qu'elles ne courent pas le risque d'être supprimées par les plateformes sur lesquelles elles étaient hébergées, ce qui malheureusement arrive souvent. | |||
<code> | |||
 | |||
</code> | |||
 | |||
[ | |||
Pour positionner votre image à *gauche*, à *droite* ou au *centre* indiquez-le dans le `alt` (entre les crochets), de telle sorte: | |||
<code> | |||
 | |||
 | |||
 | |||
</code> | |||
 | |||
 | |||
 | |||
=== Média=== | |||
Nous avons sur notre forum l'extension [s9e/mediaembed](https://discuss.flarum.org/d/647-s9e-mediaembed-embed-videos-and-third-party-content) | |||
qui permet l'intégration de médias (youtube, soundcloud, amazon, etc) en postant tout simplement le lien vers le médias. Il n'est pas nécessaire dans la plupart des cas de mettre de balises. [Voici une liste](https://s9etextformatter.readthedocs.org/Plugins/MediaEmbed/Sites/) des médias et des tags supportés par l'extension. | |||
<code> | |||
https://www.youtube.com/watch?v=PPBwvMzbiPs | |||
</code> | |||
https://www.youtube.com/watch?v=PPBwvMzbiPs | |||
=== Titre=== | |||
Faîtes précéder votre mot/phrase d'une ou plusieurs dièses selon la hiérarchie de vos titres: | |||
<code> | |||
# Titre 1 | |||
## Titre 2 | |||
### Titre 3 | |||
#### Titre 4 | |||
##### Titre 5 | |||
</code> | |||
== Syntaxe avancée== | |||
===== | === Code=== | ||
Pour proposer une ligne de code, il vous fuffit de le place entre deux accents aigûs | |||
<code> | |||
`ligne de code` | |||
</code> | |||
Pour plusieurs lignes de code placez-les entre six accents, trois pour ouvrir, trois pour fermer. | |||
=== Syntax Highlight=== | |||
Le markdown de Flarum comprend aussi le Syntax highlight! Il vous suffit pour cela de faire suivre les trois premiers accents ouvrant les balises code du nom du langage | |||
 | |||
<code>javascript | |||
var s = "JavaScript syntax highlighting"; | |||
alert(s); | |||
<code> | |||
* [https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code-and-syntax-highlighting](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code-and-syntax-highlighting) | |||
* [Liste des langages supportés](https://highlightjs.org/static/demo/) | |||
== Liens et références== | |||
* [https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) | |||
* [https://daringfireball.net/projects/markdown/](https://daringfireball.net/projects/markdown/) | |||
=== MediaEmbed === | |||
{| class="wikitable2" | {| class="wikitable2" | ||
!''' | !id | ||
!''' | !plateforme | ||
!exemple(s) | |||
|- | |||
|<code>abcnews</code> | |||
|'''ABC News''' | |||
|http://abcnews.go.com/WNN/video/dog-goes-wild-when-owner-leaves-22936610 | |||
|- | |||
|<code>amazon</code> | |||
|'''Amazon Product''' | |||
|http://www.amazon.ca/gp/product/B00GQT1LNO/ | |||
http://www.amazon.co.jp/gp/product/B003AKZ6I8/ | |||
http://www.amazon.co.uk/gp/product/B00BET0NR6/ | |||
http://www.amazon.com/dp/B002MUC0ZY | |||
http://www.amazon.com/The-BeerBelly-200-001-80-Ounce-Belly/dp/B001RB2CXY/ | |||
http://www.amazon.com/gp/product/B0094H8H7I | |||
http://www.amazon.de/Netgear-WN3100RP-100PES-Repeater-integrierte-Steckdose/dp/B00ET2LTE6/ | |||
http://www.amazon.es/Vans-OLD-SKOOL-BLACK-WHITE/dp/B000R3QPEA/ | |||
http://www.amazon.fr/Vans-Authentic-Baskets-mixte-adulte/dp/B005NIKPAY/ | |||
http://www.amazon.it/gp/product/B00JGOMIP6/ | |||
|- | |||
|<code>audioboom</code> | |||
|'''audioBoom''' | |||
|http://audioboo.fm/boos/2439994-deadline-day-update | |||
http://audioboom.com/boos/2493448-robert-patrick | |||
|- | |||
|<code>audiomack</code> | |||
|'''Audiomack''' | |||
|http://www.audiomack.com/song/your-music-fix/jammin-kungs-remix-1 | |||
http://www.audiomack.com/album/chance-the-rapper/acid-rap | |||
|- | |||
|<code>bandcamp</code> | |||
|'''Bandcamp''' | |||
|http://proleter.bandcamp.com/album/curses-from-past-times-ep | |||
http://proleter.bandcamp.com/track/downtown-irony | |||
http://therunons.bandcamp.com/track/still-feel | |||
|- | |||
|<code>bbcnews</code> | |||
|'''BBC News''' | |||
|http://www.bbc.com/news/science-environment-29232523 | |||
|- | |||
|<code>blab</code> | |||
|'''Blab''' | |||
|https://blab.im/05b6ce88279f40798069bb6227a04fce | |||
|- | |||
|<code>bleacherreport</code> | |||
|'''Bleacher Report videos''' | |||
|http://bleacherreport.com/articles/2418813-steph-curry-salsas-after-teammate-leandro-barbosa-converts-difficult-layup | |||
|- | |||
|<code>break</code> | |||
|'''Break''' | |||
|http://www.break.com/video/video-game-playing-frog-wants-more-2278131 | |||
|- | |||
|<code>cbsnews</code> | |||
|'''CBS News Video''' | |||
|http://www.cbsnews.com/video/watch/?id=50156501n | |||
http://www.cbsnews.com/videos/is-the-us-stock-market-rigged | |||
|- | |||
|<code>cnbc</code> | |||
|'''CNBC''' | |||
|http://video.cnbc.com/gallery/?video=3000269279 | |||
|- | |||
|<code>cnn</code> | |||
|'''CNN''' | |||
|http://edition.cnn.com/videos/tv/2015/06/09/airplane-yoga-rachel-crane-ts-orig.cnn | |||
http://us.cnn.com/video/data/2.0/video/bestoftv/2013/10/23/vo-nr-prince-george-christening-arrival.cnn.html | |||
|- | |||
|<code>cnnmoney</code> | |||
|'''CNNMoney''' | |||
|http://money.cnn.com/video/technology/2014/05/20/t-twitch-vp-on-future.cnnmoney/ | |||
|- | |||
|<code>collegehumor</code> | |||
|'''CollegeHumor''' | |||
|http://www.collegehumor.com/video/1181601/more-than-friends | |||
|- | |||
|<code>comedycentral</code> | |||
|'''Comedy Central''' | |||
|http://www.cc.com/video-clips/uu5qz4/key-and-peele-dueling-hats | |||
http://www.comedycentral.com/video-clips/uu5qz4/key-and-peele-dueling-hats | |||
http://tosh.cc.com/video-clips/aet4lh/rc-car-crash | |||
|- | |||
|<code>coub</code> | |||
|'''Coub''' | |||
|http://coub.com/view/6veusoty | |||
|- | |||
|<code>dailymotion</code> | |||
|'''Dailymotion''' | |||
|http://www.dailymotion.com/video/x222z1 | |||
http://www.dailymotion.com/user/Dailymotion/2#video=x222z1 | |||
http://games.dailymotion.com/live/x15gjhi | |||
|- | |||
|<code>democracynow</code> | |||
|'''Democracy Now!''' | |||
|http://www.democracynow.org/2014/7/2/dn_at_almedalen_week_at_swedens | |||
http://www.democracynow.org/blog/2015/3/13/part_2_bruce_schneier_on_the | |||
http://www.democracynow.org/shows/2006/2/20 | |||
http://www.democracynow.org/2015/5/21/headlines | |||
http://m.democracynow.org/stories/15236 | |||
|- | |||
|<code>dumpert</code> | |||
|'''dumpert''' | |||
|http://www.dumpert.nl/mediabase/6622577/4652b140/r_mi_gaillard_doet_halloween_prank.html | |||
|- | |||
|<code>eighttracks</code> | |||
|'''8tracks''' | |||
|http://8tracks.com/lovinq/headphones-in-world-out | |||
http://8tracks.com/lovinq/4982023 | |||
|- | |||
|<code>espn</code> | |||
|'''ESPN''' | |||
|http://espn.go.com/video/clip?id=11255783 | |||
http://m.espn.go.com/general/video?vid=11255783 | |||
http://espndeportes.espn.go.com/videohub/video/clipDeportes?id=2134782 | |||
http://espn.go.com/video/clip?id=espn:11195358 | |||
|- | |||
|<code>facebook</code> | |||
|'''Facebook''' | |||
|https://www.facebook.com/FacebookDevelopers/posts/10151471074398553 | |||
https://www.facebook.com/photo.php?v=10100658170103643&set=vb.20531316728&type=3&theater | |||
https://www.facebook.com/video/video.php?v=10150451523596807 | |||
https://www.facebook.com/photo.php?fbid=10152476416772631 | |||
|- | |||
|<code>flickr</code> | |||
|'''Flickr''' | |||
|https://www.flickr.com/photos/8757881@N04/2971804544/lightbox/ | |||
|- | |||
|<code>foxnews</code> | |||
|'''Fox News''' | |||
|http://video.foxnews.com/v/3592758613001/reddit-helps-fund-homemade-hot-sauce-venture/ | |||
|- | |||
|<code>funnyordie</code> | |||
|'''Funny or Die''' | |||
|http://www.funnyordie.com/videos/bf313bd8b4/murdock-with-keith-david | |||
|- | |||
|<code>gamespot</code> | |||
|'''Gamespot''' | |||
|http://www.gamespot.com/destiny/videos/destiny-the-moon-trailer-6415176/ | |||
http://www.gamespot.com/events/game-crib-tsm-snapdragon/gamecrib-extras-cooking-with-dan-dinh-6412922/ | |||
http://www.gamespot.com/videos/beat-the-pros-pax-prime-2013/2300-6414307/ | |||
|- | |||
|<code>gametrailers</code> | |||
|'''GameTrailers''' | |||
|http://www.gametrailers.com/videos/view/pop-fiction/102300-Metal-Gear-Solid-3-Still-in-a-Dream | |||
|- | |||
|<code>getty</code> | |||
|'''Getty Images''' | |||
|http://gty.im/3232182 | |||
http://www.gettyimages.com/detail/3232182 | |||
http://www.gettyimages.com/detail/news-photo/the-beatles-travel-by-coach-to-the-west-country-for-some-news-photo/3232182 | |||
http://www.gettyimages.co.uk/detail/3232182 | |||
|- | |||
|<code>gfycat</code> | |||
|'''Gfycat''' | |||
|http://gfycat.com/SereneIllfatedCapybara | |||
http://giant.gfycat.com/SereneIllfatedCapybara.gif | |||
|- | |||
|<code>gist</code> | |||
|'''GitHub Gist (via custom iframe)''' | |||
|https://gist.github.com/s9e/0ee8433f5a9a779d08ef | |||
https://gist.github.com/6806305 | |||
https://gist.github.com/s9e/6806305/ad88d904b082c8211afa040162402015aacb8599 | |||
|- | |||
|<code>globalnews</code> | |||
|'''Global News''' | |||
|http://globalnews.ca/video/1647385/mark-channels-his-70s-look/ | |||
|- | |||
|<code>gofundme</code> | |||
|'''GoFundMe''' | |||
|http://www.gofundme.com/2p37ao | |||
|- | |||
|<code>googledrive</code> | |||
|'''Google Drive''' | |||
|https://drive.google.com/file/d/0B_4NRUjxLBejNjVmeG5MUzA3Q3M/view?usp=sharing | |||
|- | |||
|<code>googleplus</code> | |||
|'''Google+''' | |||
|https://plus.google.com/+TonyHawk/posts/C5TMsDZJWBd | |||
https://plus.google.com/106189723444098348646/posts/V8AojCoTzxV | |||
|- | |||
|<code>googlesheets</code> | |||
|'''Google Sheets''' | |||
|https://docs.google.com/spreadsheets/d/1f988o68HDvk335xXllJD16vxLBuRcmm3vg6U9lVaYpA | |||
https://docs.google.com/spreadsheet/ccc?key=0An1aCHqyU7FqdGtBUDc1S1NNSWhqY3NidndIa1JuQWc#gid=70 | |||
|- | |||
|<code>hudl</code> | |||
|'''Hudl''' | |||
|http://www.hudl.com/athlete/2067184/highlights/163744377 | |||
http://www.hudl.com/v/CVmja | |||
|- | |||
|<code>hulu</code> | |||
|'''Hulu''' | |||
|http://www.hulu.com/watch/484180 | |||
|- | |||
|<code>humortvnl</code> | |||
|'''HumorTV''' | |||
|http://humortv.vara.nl/pa.346135.denzel-washington-bij-graham-norton.html | |||
|- | |||
|<code>ign</code> | |||
|'''IGN''' | |||
|http://www.ign.com/videos/2013/07/12/pokemon-x-version-pokemon-y-version-battle-trailer | |||
|- | |||
|<code>imdb</code> | |||
|'''IMDb''' | |||
|http://www.imdb.com/video/imdb/vi2482677785/ | |||
http://www.imdb.com/video/epk/vi387296537/ | |||
|- | |||
|<code>imgur</code> | |||
|'''Imgur''' | |||
|http://imgur.com/AsQ0K3P | |||
http://imgur.com/a/9UGCL | |||
http://imgur.com/gallery/9UGCL | |||
http://i.imgur.com/u7Yo0Vy.gifv | |||
http://i.imgur.com/UO1UrIx.mp4 | |||
|- | |||
|<code>indiegogo</code> | |||
|'''Indiegogo''' | |||
|http://www.indiegogo.com/projects/gameheart-redesigned | |||
|- | |||
|<code>instagram</code> | |||
|'''Instagram''' | |||
|http://instagram.com/p/gbGaIXBQbn/ | |||
|- | |||
|<code>internetarchive</code> | |||
|'''Internet Archive''' | |||
|https://archive.org/details/BillGate99 | |||
https://archive.org/details/DFTS2014-05-30 | |||
|- | |||
|<code>izlesene</code> | |||
|'''İzlesene''' | |||
|http://www.izlesene.com/video/lily-allen-url-badman/7600704 | |||
|- | |||
|<code>khl</code> | |||
|'''Kontinental Hockey League (КХЛ)''' | |||
|http://video.khl.ru/events/233677 | |||
http://video.khl.ru/quotes/251237 | |||
|- | |||
|<code>kickstarter</code> | |||
|'''Kickstarter''' | |||
|http://www.kickstarter.com/projects/1869987317/wish-i-was-here-1 | |||
http://www.kickstarter.com/projects/1869987317/wish-i-was-here-1/widget/card.html | |||
http://www.kickstarter.com/projects/1869987317/wish-i-was-here-1/widget/video.html | |||
|- | |||
|<code>kissvideo</code> | |||
|'''Kiss Video''' | |||
|http://www.kissvideo.click/alton-towers-smiler-rollercoaster-crash_7789d8de8.html | |||
|- | |||
|<code>libsyn</code> | |||
|'''Libsyn''' | |||
|http://bunkerbuddies.libsyn.com/interstellar-w-brandie-posey | |||
|- | |||
|<code>liveleak</code> | |||
|'''LiveLeak''' | |||
|http://www.liveleak.com/view?i=3dd_1366238099 | |||
|- | |||
|<code>livestream</code> | |||
|'''Livestream''' | |||
|http://new.livestream.com/jbtvlive/musicmarathon | |||
http://livestream.com/ccscsl/USChessChampionships/videos/83267610 | |||
|- | |||
|<code>mailru</code> | |||
|'''Mail.Ru''' | |||
|http://my.mail.ru/corp/auto/video/testdrive/34.html | |||
http://my.mail.ru/mail/classolo/video/28/29.html | |||
http://my.mail.ru/mail/you4videos/video/_myvideo/1121.html | |||
|- | |||
|<code>medium</code> | |||
|'''Medium''' | |||
|https://medium.com/@donnydonny/team-internet-is-about-to-win-net-neutrality-and-they-didnt-need-googles-help-e7e2cf9b8a95 | |||
|- | |||
|<code>metacafe</code> | |||
|'''Metacafe''' | |||
|http://www.metacafe.com/watch/10785282/chocolate_treasure_chest_epic_meal_time/ | |||
|- | |||
|<code>mixcloud</code> | |||
|'''Mixcloud''' | |||
|http://www.mixcloud.com/OneTakeTapes/timsch-one-take-tapes-2/ | |||
http://i.mixcloud.com/CH9VU9 | |||
|- | |||
|<code>msnbc</code> | |||
|'''MSNBC''' | |||
|http://www.msnbc.com/ronan-farrow-daily/watch/thats-no-moon--300512323725 | |||
http://on.msnbc.com/1qkH62o | |||
|- | |||
|<code>natgeochannel</code> | |||
|'''National Geographic Channel''' | |||
|http://channel.nationalgeographic.com/channel/brain-games/videos/jason-silva-on-intuition/ | |||
http://channel.nationalgeographic.com/wild/urban-jungle/videos/leopard-in-the-city/ | |||
|- | |||
|<code>natgeovideo</code> | |||
|'''National Geographic Video''' | |||
|http://video.nationalgeographic.com/tv/changing-earth | |||
http://video.nationalgeographic.com/video/weirdest-superb-lyrebird | |||
|- | |||
|<code>nhl</code> | |||
|'''NHL VideoCenter''' | |||
|http://video.nhl.com/videocenter/console?id=783647&catid=35 | |||
http://video.nhl.com/videocenter/console?id=2014021049-387-h | |||
|- | |||
|<code>npr</code> | |||
|'''NPR''' | |||
|http://www.npr.org/blogs/goatsandsoda/2015/02/11/385396431/the-50-most-effective-ways-to-transform-the-developing-world | |||
http://n.pr/1Qky1m5 | |||
|- | |||
|<code>nytimes</code> | |||
|'''The New York Times Video''' | |||
|http://www.nytimes.com/video/magazine/100000003166834/small-plates.html | |||
http://www.nytimes.com/video/technology/personaltech/100000002907606/soylent-taste-test.html | |||
http://www.nytimes.com/video/2012/12/17/business/100000001950744/how-wal-mart-conquered-teotihuacan.html | |||
|- | |||
|<code>oddshot</code> | |||
|'''Oddshot''' | |||
|http://oddshot.tv/shot/PlayHearthstone_694_201507222254380956 | |||
http://oddshot.tv/shot/spunj-2015082711414891 | |||
|- | |||
|<code>pastebin</code> | |||
|'''Pastebin''' | |||
|http://pastebin.com/9jEf44nc | |||
|- | |||
|<code>playstv</code> | |||
|'''Plays.tv''' | |||
|http://plays.tv/video/565683db95f139f47e/full-length-version-radeon-software-crimson-edition-is-amds-revolutionary-new-graphics-software-that | |||
|- | |- | ||
|<code>podbean</code> | |||
|<code> | |'''Podbean''' | ||
| | |http://dialhforheroclix.podbean.com/e/dial-h-for-heroclix-episode-46-all-ya-need-is-love/ | ||
|- | |- | ||
|''' | |<code>prezi</code> | ||
| | |'''Prezi''' | ||
|http://prezi.com/5ye8po_hmikp/10-most-common-rookie-presentation-mistakes/ | |||
|- | |- | ||
|''' | |<code>reddit</code> | ||
| | |'''Reddit comment permalink''' | ||
|http://www.reddit.com/r/pics/comments/304rms/cats_reaction_to_seeing_the_ceiling_fan_move_for/cpp2kkl | |||
|- | |- | ||
|''' | |<code>rutube</code> | ||
| | |'''Rutube''' | ||
|http://rutube.ru/video/b920dc58f1397f1761a226baae4d2f3b/ | |||
http://rutube.ru/tracks/4118278.html?v=8b490a46447720d4ad74616f5de2affd | |||
|- | |- | ||
|''' | |<code>scribd</code> | ||
| | |'''Scribd''' | ||
|http://www.scribd.com/doc/237147661/Calculus-2-Test-1-Review?in_collection=5291376 | |||
|- | |- | ||
|<code>slideshare</code> | |||
|<code> | |'''SlideShare''' | ||
| | |http://www.slideshare.net/Slideshare/how-23431564 | ||
|- | |- | ||
|''' | |<code>soundcloud</code> | ||
| | |'''SoundCloud''' | ||
|http://api.soundcloud.com/tracks/98282116 | |||
https://soundcloud.com/andrewbird/three-white-horses | |||
https://soundcloud.com/tenaciousd/sets/rize-of-the-fenix/ | |||
|- | |- | ||
|''' | |<code>sportsnet</code> | ||
| | |'''Sportsnet''' | ||
|http://www.sportsnet.ca/soccer/west-ham-2-hull-2/ | |||
|- | |- | ||
|<code>spotify</code> | |||
|<code> | |'''Spotify''' | ||
| | |spotify:track:5JunxkcjfCYcY7xJ29tLai | ||
spotify:trackset:PREFEREDTITLE:5Z7ygHQo02SUrFmcgpwsKW,1x6ACsKV4UdWS2FMuPFUiT,4bi73jCM02fMpkI11Lqmfe | |||
http://open.spotify.com/user/ozmoetr/playlist/4yRrCWNhWOqWZx5lmFqZvt | |||
https://play.spotify.com/album/5OSzFvFAYuRh93WDNCTLEz | |||
|- | |- | ||
|<code>stitcher</code> | |||
|<code> | |'''Stitcher''' | ||
| | |http://www.stitcher.com/podcast/twit/tech-news-today/e/twitter-shares-fall-18-percent-after-earnings-leak-on-twitter-37808629 | ||
|- | |- | ||
|''' | |<code>strawpoll</code> | ||
| | |'''Straw Poll''' | ||
|http://strawpoll.me/738091 | |||
|- | |- | ||
|''' | |<code>streamable</code> | ||
| | |'''Streamable''' | ||
|http://streamable.com/e4d | |||
|- | |- | ||
|''' | |<code>teamcoco</code> | ||
| | |'''Team Coco''' | ||
|http://teamcoco.com/video/serious-jibber-jabber-a-scott-berg-full-episode | |||
http://teamcoco.com/video/73784/historian-a-scott-berg-serious-jibber-jabber-with-conan-obrien | |||
|- | |- | ||
|''' | |<code>ted</code> | ||
| | |'''TED Talks''' | ||
|http://www.ted.com/talks/eli_pariser_beware_online_filter_bubbles.html | |||
http://embed.ted.com/playlists/26/our_digital_lives.html | |||
|- | |- | ||
|''' | |<code>theatlantic</code> | ||
| | |'''The Atlantic Video''' | ||
|http://www.theatlantic.com/video/index/358928/computer-vision-syndrome-and-you/ | |||
|- | |- | ||
|<code>theonion</code> | |||
|<code> | |'''The Onion''' | ||
| | |http://www.theonion.com/video/nation-successfully-completes-mothers-day-by-918-a,35998/ | ||
http://www.theonion.com/video/the-onion-reviews-avengers-age-of-ultron-38524 | |||
|- | |- | ||
|<code>tinypic</code> | |||
|<code> | |'''TinyPic videos''' | ||
| | |http://tinypic.com/player.php?v=29x86j9&s=8 | ||
| | |- | ||
|<code>tmz</code> | |||
|'''TMZ''' | |||
|http://www.tmz.com/videos/0_2pr9x3rb/ | |||
|- | |- | ||
| | |<code>traileraddict</code> | ||
| | |'''Trailer Addict''' | ||
| | |http://www.traileraddict.com/the-amazing-spider-man-2/super-bowl-tv-spot | ||
|- | |- | ||
| | |<code>tumblr</code> | ||
| | |'''Tumblr''' | ||
| | |http://mrbenvey.tumblr.com/post/104191225637 | ||
|- | |- | ||
| | |<code>twitch</code> | ||
|'''Twitch''' | |||
|http://www.twitch.tv/twitch | |||
http://www.twitch.tv/twitch/b/557643505 | |||
http://www.twitch.tv/twitch/c/5965727 | |||
http://www.twitch.tv/twitch/v/29415830?t=17m17s | |||
|- | |- | ||
| | |<code>twitter</code> | ||
| | |'''Twitter''' | ||
| | |https://twitter.com/IJasonAlexander/statuses/526635414338023424 | ||
https://mobile.twitter.com/DerekTVShow/status/463372588690202624 | |||
https://twitter.com/#!/IJasonAlexander/status/526635414338023424 | |||
|- | |- | ||
| | |<code>ustream</code> | ||
| | |'''Ustream''' | ||
| | |http://www.ustream.tv/channel/ps4-ustream-gameplay | ||
http://www.ustream.tv/baja1000tv | |||
http://www.ustream.tv/recorded/40688256 | |||
|- | |- | ||
| | |<code>vbox7</code> | ||
| | |'''VBOX7''' | ||
| | |http://vbox7.com/play:3975300ec6 | ||
|- | |- | ||
| | |<code>vevo</code> | ||
| | |'''VEVO''' | ||
| | |http://www.vevo.com/watch/USUV71400682 | ||
http://www.vevo.com/watch/eminem/the-monster-explicit/USUV71302925 | |||
|- | |- | ||
| | |<code>viagame</code> | ||
| | |'''Viagame''' | ||
| | |http://www.viagame.com/channels/hearthstone-championship/405177 | ||
|- | |- | ||
| | |<code>videomega</code> | ||
| | |'''Videomega''' | ||
| | |http://videomega.tv/?ref=aPRKXgQdaD | ||
|- | |- | ||
| | |<code>vidme</code> | ||
| | |'''vidme''' | ||
| | | | ||
|- | |- | ||
| | |<code>vimeo</code> | ||
| | |'''Vimeo''' | ||
| | |http://vimeo.com/67207222 | ||
http://vimeo.com/channels/staffpicks/67207222 | |||
|- | |- | ||
| | |<code>vine</code> | ||
|'''Vine''' | |||
|https://vine.co/v/bYwPIluIipH | |||
| | |||
| | |||
|- | |- | ||
| | |<code>vk</code> | ||
|'''VK''' | |||
|http://vkontakte.ru/video-7016284_163645555 | |||
http://vk.com/video226156999_168963041 | |||
http://vk.com/newmusicvideos?z=video-13895667_161988074 | |||
http://vk.com/video_ext.php?oid=121599878&id=165723901&hash=e06b0878046e1d32 | |||
|- | |- | ||
| | |<code>vocaroo</code> | ||
| | |'''Vocaroo''' | ||
| | |http://vocaroo.com/i/s0dRy3rZ47bf | ||
|- | |- | ||
| | |<code>vox</code> | ||
| | |'''Vox''' | ||
| | |http://www.vox.com/2015/7/21/9005857/ant-man-marvel-apology-review#ooid=ltbzJkdTpKpE-O6hOfD3YJew3t3MppXb | ||
|- | |- | ||
| | |<code>wshh</code> | ||
| | |'''WorldStarHipHop''' | ||
| | |http://www.worldstarhiphop.com/videos/video.php?v=wshhZ8F22UtJ8sLHdja0 | ||
http://m.worldstarhiphop.com/video.php?v=wshh2SXFFe7W14DqQx61 | |||
http://www.worldstarhiphop.com/featured/71630 | |||
|- | |- | ||
| | |<code>wsj</code> | ||
| | |'''The Wall Street Journal Online''' | ||
| | |http://www.wsj.com/video/nba-players-primp-with-pedicures/9E476D54-6A60-4F3F-ABC1-411014552DE6.html | ||
http://live.wsj.com/#!09FB2B3B-583E-4284-99D8-FEF6C23BE4E2 | |||
http://live.wsj.com/video/seahawks-qb-russell-wilson-on-super-bowl-win/9B3DF790-9D20-442C-B564-51524B06FD26.html | |||
|- | |- | ||
| | |<code>xboxclips</code> | ||
| | |'''XboxClips''' | ||
| | |http://xboxclips.com/dizturbd/e3a2d685-3e9f-454f-89bf-54ddea8f29b3 | ||
|- | |- | ||
| | |<code>xboxdvr</code> | ||
| | |'''Xbox DVR''' | ||
| | |http://xboxdvr.com/gamer/LOXITANE/video/12463958 | ||
|- | |- | ||
| | |<code>yahooscreen</code> | ||
| | |'''Yahoo! Screen''' | ||
| | |https://screen.yahoo.com/mr-short-term-memory-000000263.html | ||
https://screen.yahoo.com/dana-carvey-snl-skits/church-chat-satan-000000502.html | |||
|- | |- | ||
| | |<code>youku</code> | ||
| | |'''Youku''' | ||
| | |http://v.youku.com/v_show/id_XNzQwNjcxNDM2.html | ||
|- | |- | ||
| | |<code>youtube</code> | ||
| | |'''YouTube''' | ||
| | |http://www.youtube.com/watch?v=-cEzsCAzTak | ||
http://www.youtube.com/watch?feature=player_detailpage&v=jofNR_WkoCE#t=40 | |||
http://www.youtube.com/watch?v=pC35x6iIPmo&list=PLOU2XLYxmsIIxJrlMIY5vYXAFcO5g83gA | |||
|- | |- | ||
| | |<code>zippyshare</code> | ||
| | |'''Zippyshare audio files''' | ||
| | |http://www17.zippyshare.com/v/EtPLaXGE/file.html | ||
|} | |} | ||
[[Catégorie:Tutoriel]] | [[Catégorie:Tutoriel]] | ||
[[Catégorie:Forum]] | [[Catégorie:Forum]] |
Dernière version du 28 janvier 2016 à 16:44

Pour faire tourner notre forum, nous utilisons **Flarum**, un CMS tout récent qui de part son interface, veut plus intuitif et user-friendly, mais aussi de part sa conception qui tend à favoriser l'implication des nouveaux membres.
Pour poster sur le forum s'offre à vous deux langages, le traditionnel BBCode mais aussi le **Markdown**.
Markdown
Le **Markdown** est un langage de balisage léger créé par John Gruber en 2004. Son but est d'offrir une syntaxe facile à lire et à écrire.
Les bases
Gras
Cernez votre mot/phrase de deux astérisques:
- Bonjour, je suis Gras mais je me soigne.**
- Bonjour, je suis Gras mais je me soigne.**
Italique
Cernez votre mot/phrase d'un astérisque:
- Bonjour, je suis italique, je viens d'Italie.*
- Bonjour, je suis italique, je viens d'Italie.*
Barré
Cernez votre mot/phrase de deux tildes:
~~Bonjour, je n'ai pas voix au chapître, je suis mal barré.~~
~~Bonjour, je n'ai pas voix au chapître, je suis mal barré.~~
Citation
Faite préceder la ligne d'un chevron supérieur
> La paix n'est que mensonge.
Il n'y a que la passion.
Par la passion, j'ai la puissance.
Par la puissance, j'ai le pouvoir.
Par le pouvoir, j'ai la victoire.
Par la victoire, mes chaînes se brisent.
La Force me libérera.
<quote> La paix n'est que mensonge.
Il n'y a que la passion. Par la passion, j'ai la puissance. Par la puissance, j'ai le pouvoir. Par le pouvoir, j'ai la victoire. Par la victoire, mes chaînes se brisent. La Force me libérera.</quote>
Liste
Faites précéder chaque ligne d'un astérisque suivi d'un espace
- Bonjour, je suis le premier élément d'une liste
- Bonjour! Je suis le second élément de cette liste
- Bonjour, je suis le premier élément d'une liste
- Bonjour! Je suis le second élément de cette liste
Lien
Bonjour je suis un [Lien](https://nefald.fr/).
Bonjour je suis un [Lien](https://nefald.fr/).
Image
Pour insérer une image sur le forum nous vous demandons d'utiliser le bouton de téléversement situé en bas de votre fenêtre de rédaction. **Il est très fortement recommandé** à nos utilisateurs d'utiliser ce seul moyen afin de partager leurs images, en effet nos sites étant entièrement cryptés si vous insérez dans vos messages des images téléversées sur des sites ne supportant pas le protocole https, certains navigateurs bloqueront partiellement le chargement des pages de notre forum, ce qui est nuisible.
De plus cela vous assure que vos images seront conservées sur le forum et qu'elles ne courent pas le risque d'être supprimées par les plateformes sur lesquelles elles étaient hébergées, ce qui malheureusement arrive souvent.


Pour positionner votre image à *gauche*, à *droite* ou au *centre* indiquez-le dans le `alt` (entre les crochets), de telle sorte:






Média
Nous avons sur notre forum l'extension [s9e/mediaembed](https://discuss.flarum.org/d/647-s9e-mediaembed-embed-videos-and-third-party-content)
qui permet l'intégration de médias (youtube, soundcloud, amazon, etc) en postant tout simplement le lien vers le médias. Il n'est pas nécessaire dans la plupart des cas de mettre de balises. [Voici une liste](https://s9etextformatter.readthedocs.org/Plugins/MediaEmbed/Sites/) des médias et des tags supportés par l'extension.
https://www.youtube.com/watch?v=PPBwvMzbiPs
https://www.youtube.com/watch?v=PPBwvMzbiPs
Titre
Faîtes précéder votre mot/phrase d'une ou plusieurs dièses selon la hiérarchie de vos titres:
- Titre 1
- Titre 2
- Titre 3
- Titre 4
- Titre 5
Syntaxe avancée
Code
Pour proposer une ligne de code, il vous fuffit de le place entre deux accents aigûs
`ligne de code`
Pour plusieurs lignes de code placez-les entre six accents, trois pour ouvrir, trois pour fermer.
Syntax Highlight
Le markdown de Flarum comprend aussi le Syntax highlight! Il vous suffit pour cela de faire suivre les trois premiers accents ouvrant les balises code du nom du langage

javascript
var s = "JavaScript syntax highlighting";
alert(s);
- [1](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code-and-syntax-highlighting)
- [Liste des langages supportés](https://highlightjs.org/static/demo/)
Liens et références
MediaEmbed